$(document).ready(function(){	$(".unactiveTopMenu").hover(function(){       $(this).css("background-color","#44B1FF");
	},
	function(){       $(this).css("background-color","#0077CD");
	});

	$(".activeTopMenu").hover(function(){
       $(this).css("background-color","#0077CD");
	},
	function(){
       $(this).css("background-color","#44B1FF");
	});
});