$(document).ready(function(){
	$("#products").addClass("js");
	
	$(".product").hover(
    function() {
      $(this).find("ul").slideDown('fast');
      $(this).prepend('<div class="shadow"></div>').fadeIn('fast');
    }, 
    function() {
      $(this).find("ul").slideUp('fast');
      $(this).find("div.shadow").fadeOut('fast', function(){
        $(this).remove();
      });
    }
  );
	
});
