
//hover list li (working png fix)
$('ul.list li a').hover(
function () {
	$(this).css({
		'background-image':'url(images/arrow.png)',
		backgroundColor: "#1a60eb",
		color: "#FFF"});
},
function () {
	$(this).css({
		'background-image':'url(images/arrowr.png)',
		backgroundColor: "",
		color: "#000"});
});
//hover worldmap and li
$('area, .regions li').hover(
function () {
	var area = $(this).attr("class");
	$('div.'+area).show();
	$('li.'+area).css({
		'background-image':'url(images/arrow.png)',
		backgroundColor: "#1a60eb",
		color: "#FFF"});
},
function () {
	var area = $(this).attr("class");
	$('div.'+area+'').hide();
	$('li.'+area).css({
		'background-image':'url(images/arrowr.png)',
		backgroundColor: "",
		color: "#000"});
});

