$(document).ready(function(){	
	$(".shopitem .image, .newspecial .image").hover(
		function(){
			$(this).children().animate({bottom: '-5px'});
		},
		function(){
			$(this).children().animate({bottom: '-36px'});
		});
		
	if (newspecial == true ) {
		startFade(0);
	}	
	if (threesteps == true ) {
		startFade3steps(0);
		$(".threesteps .tabs .tab").hover(function(event){
				var thiseq = $(".threesteps .tabs .tab").index(this);
				$(".threesteps .photo img").hide();
				$(".threesteps .photo img").eq(thiseq).show();
				$(".threesteps .tabs .tab").removeClass('active');
				$(".threesteps .tabs .tab").eq(thiseq).addClass('active');
				clearTimeout(goingtochange);
				goingtochange = setTimeout(function() { startFade3steps(thiseq); }, 5000);
				return false;
		});
	}
});