$(document).ready(function(){
	$("div.dessert").hover(
      function () {
        $(this).find("div.dessert-detail").fadeIn(350);
		$(this).css("background-color", "#EEE");
		$("#"+$(this).find("div.dessert-detail").attr('id')+"-img").fadeIn(500);
		$("img.default").hide();
      }, 
      function () {
        $(this).find("div.dessert-detail").hide();
		$(this).css("background-color", "#FFF");
		$("#change-container").find("img.dessert").fadeOut(200);
      }
    );
	
	$("div#desserts-list").bind("mouseleave", function(){
		$("img.default").fadeIn(500);
	})
});



