$(document).ready(function() {
   // put all your jQuery goodness in here.
   
   $("#product_grid li").mouseover(function() {
  		 var thisTarget = $(this).children("div");
  		 $(thisTarget).css("display","block")
	});

   $("#product_grid li").mouseout(function() {
  		 var thisTarget = $(this).children("div");
  		 $(thisTarget).css("display","none")
	});

	// this is for the knobs-collection page
	$("#white-block").hide("slide", { direction: "down" }, 6000);

 });

