$(document).ready(function(){
/*	
	$("#column .cartholder").bind("mouseover", function(){
		$('#products_hovered').fadeIn('fast')
	});

	$("#column .cartholder").bind("mouseout", function(){
		$('#products_hovered').css('display','none')
	});

*/
    $("#column .cartholder").hover(
      function () {
        $('#products_hovered').fadeIn('fast');
      }, 
      function () {
        $('#products_hovered').fadeOut('fast');
      }
    );



});