jQuery(function() {


			var timeout;
			var products = jQuery('#products_carousel');
			var scrollDown = jQuery('#scrollDown');
			var scrollUp = jQuery('#scrollUp');

			jQuery('#mycarousel').jcarousel({
				scroll: 1,
				animation: 700,
				easing: "swing",
				wrap: "both"
			});

			setTimeout(function() {jQuery('.flash').hide("slow")}, 3000);

			scrollDown.mousedown(function() {
				timeout = setInterval(function() {
					products.attr("scrollTop", function(i, val) {return val+1;});
				},10);
			});

			scrollUp.mousedown(function() {
				timeout = setInterval(function() {
					products.attr("scrollTop", function(i, val) {return val-1;});
				},10);
			});

			jQuery(document).mouseup(function() {
				clearInterval(timeout)
				return false;
			});

			jQuery('#hits_carousel').jcarousel({
				vertical: true,
				scroll: 1
			});


			jQuery('#new_carousel').jcarousel({
				vertical: true,
				scroll: 1
			});

			jQuery('#season_carousel').jcarousel({
				vertical: true,
				scroll: 1
			});




jQuery('#menu li').hover(function() 
		{
	  jQuery(this).children("ul").stop(true, true).fadeIn('fast');
		}, function() 
		{
	  jQuery(this).children("ul").stop(true, true).fadeOut('fast');
		});

});

