$(document).ready(function(){
	$("img.a").hover(
	function() {
		
		$(this).stop().animate({"opacity": "0"}, "slow");
		$('.a2').stop().animate({"opacity": "1"}, "slow");
		$('.b').fadeIn();
		document.getElementById('fancy_locks').style.background = "url(http://www.fit-equip.com/_backLoadOn.jpg)";
		$('#boxingon').fadeIn();
		$('#commercialon').fadeOut();
		$('.b2').fadeOut();
		
	}); 
	$("img.a2").hover(
	function() {
		
		$(this).stop().animate({"opacity": "0"}, "slow");
		$('.a').stop().animate({"opacity": "1"}, "slow");
		$('.b2').fadeIn();
		document.getElementById('fancy_locks').style.background = "url(http://www.fit-equip.com/_backLoadOn.jpg)";
		$('#commercialon').fadeIn();
		$('boxingon').fadeOut();
		$('.b').fadeOut();
			
	});
	$("img.b").hover(
	function() {
		// Nothing to avoid flickering
	},function(){
		
		$('.b').fadeOut();
		$('#boxingon').fadeOut();
		document.getElementById('fancy_locks').style.background = "url(http://www.fit-equip.com/_backLoad.jpg)";
		$('.a').stop().animate({"opacity": "1"}, "slow");
			
	});
	$("img.b2").hover(
	function() {
		// Nothing to avoid flickering
	},function(){
		
		$('.b2').fadeOut();
		$('#commercialon').fadeOut();
		document.getElementById('fancy_locks').style.background = "url(http://www.fit-equip.com/_backLoad.jpg)";
		$('.a2').stop().animate({"opacity": "1"}, "slow");
			
	});
});
/*
,
	function() {
		
		$(this).stop().animate({"opacity": "1"}, "slow");
		$('.b2').fadeOut();
		$(this).fadeIn();
		
	}
,
	function() {
		
		$(this).stop().animate({"opacity": "1"}, "slow");
		$('.b').fadeOut();
		$(this).fadeIn();
		
	}*/
