jQuery(document).ready(function() {
$("li#buyList li").hover(
	function () {
	$("li#buyList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
		$("li#buyList a").css({color: ""})
	});
$("li#buyList").hover(
	function () {
	$("li#buyList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
	$("li#buyList a").css({backgroundColor: "transparent"});
});	

$("li#sellList li").hover(
	function () {
	$("li#sellList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
		$("li#sellList a").css({color: ""})
	});
$("li#sellList").hover(
	function () {
	$("li#sellList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
	$("li#sellList a").css({backgroundColor: "transparent"});
});

$("li#rentList li").hover(
	function () {
	$("li#rentList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
		$("li#rentList a").css({color: ""})
	});
$("li#rentList").hover(
	function () {
	$("li#rentList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
	$("li#rentList a").css({backgroundColor: "transparent"});
});

$("li#aboutList li").hover(
	function () {
	$("li#aboutList a").css({backgroundColor: "#e71d15",color: "#ffffff"});
	},function(){
		$("li#aboutList a").css({color: ""})
	});
$("li#aboutList").hover(
	function () {
	$("li#aboutList a").css({backgroundColor: "#e71d15"});
	},function(){
	$("li#aboutList a").css({backgroundColor: "transparent"});
});

});