$(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');
      }
    );


			$('#slide-latest').anythingSlider({
				//startStopped    : true, // If autoPlay is on, this can force it to start stopped
				width           : 590,  // Override the default CSS width
				//toggleControls  : true, // if true, then slide in controls on hover and slider change, hide @ other times
				theme           : 'metallic',
				buildArrows : false,
				buildNavigation : false,
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});



	$(".thickbox").colorbox(
	{
		slideshow : false,
		title : false
	}
	);


});
