

	$(document).ready(function() {
							   
	$("#SearchLink").click(function() {
	$("#Search").toggle('fast');
		
	// make sure the image is at full opacity on load
	$(".fade").css("opacity", "1.0");
	  });
	
	// Change speed/opactity of mouseover state
	$('.fade').mouseover(function() {
	$(this).stop().fadeTo(400, 0.8);
	});
	 
	// Change speed/opactity of mouseout state
	$('.fade').mouseout(function() {
	$(this).stop().fadeTo(500, 1.40);
	});

	$('#StoreHomeFeatureSlides').cycle({
		fx: 'fade',
		speed: 500,
		timeout: 5000
	});

    });


