$().ready(function(){
	var bwc = $("#bwc");
	background   = "333333";
	$(bwc).html("<img id='bw1' src='bw1.png' style='position:absolute; display: ;background:#"+background+"; '/><a href='http://www.bwcenter.com.br'><img id='bw2' src='bw2.png' style='position:absolute; display:none;background:#"+background+";'/></a>")
	
	var bw1 = $("#bw1");
	var bw2 = $("#bw2");
	
	
	$(bwc).mouseenter(function(){	
		$(bw1).stop(true,true);
		$(bw2).stop(true,true);
							   
		$(bw1).fadeOut();
		$(bw2).fadeIn();
	})
	
	$(bwc).mouseleave(function(){	
		$(bw1).stop(true,true);
		$(bw2).stop(true,true);

		$(bw2).fadeOut();
		$(bw1).fadeIn();
	})
	
});
