$(document).ready(function(){
	$(".item").hover(function(){
		$(this).addClass("alt");
		Cufon.refresh();
	}, function(){
		$(this).removeClass("alt");
		Cufon.refresh();
	});
});
$(document).ready(function(){
	$(".slides div").hover(function(){
		$(this).addClass("alt");
		Cufon.refresh();
	}, function(){
		$(this).removeClass("alt");
		Cufon.refresh();
	});
});
//products
$(document).ready(function(){

  $("#products li > a").click(function(){
   $(this).next("div").fadeIn()
	 return false;
  });
 
 $("#products li div.info .close").click(function(){
   $("#products li div.info").fadeOut()
   return false;
  });

})
