$(document).ready(function(){


	$("#middleCol h2 a,#middleCol p a").hover(function(){
	   $(this).parent().parent().css({ background: "#424141"});
	 },function(){
	   $(this).parent().parent().css({ background: "#494848"});
	 });
	
	$(".backChange").hover(function(){
	   $(this).parent().css({ background: "#424141"});
	 },function(){
	   $(this).parent().css({ background: "#494848"});
	 });
	
	$('#callUs a img').hover(function(){
		this.src = "/assets/images/global/callBackOn.gif";
	}, function() {
		this.src = "/assets/images/global/callBack.gif";
		
	});
	
 });


