$(document).ready(function(){
	$('.fader').cycle({
		fx:    'fade', 
		timeout:  4000,
		speed:  2000,
    	pause:  1 
   });
	/*
	$('#fader').innerfade({
		speed: 1000,
		timeout: 5000
	});
	
	
	$('#fader').anythingSlider({
  		resizeContents		: false,
		autoPlay				: true,
		buildArrows			: false,
		buildNavigation	: false,      // If true, builds a list of anchor links to link to each panel
  		buildStartStop		: false
	});

   
   $('#fader2').anythingSlider({
      playRtl           : true,
      resizeContents		: false,
		autoPlay				: true,
		buildArrows			: false,
		buildNavigation	: false,      // If true, builds a list of anchor links to link to each panel
  		buildStartStop		: false
	});
*/
	
	$('#menu li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	);
	
	$("#collection_items .shoe a").click(function(){
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#content_right .shoe img").attr({ src: largePath, alt: largeAlt });
		
		$("#content_right .shoe h3").html(largeAlt); return false;
	});
});
