$(function() {
$(".topmenu").mouseenter(function(event) {
$(this).children(".lefthover").css("background-image", "url(/img/left.png)");
$(this).children(".righthover").css("background-image", "url(/img/right.png)");
$(this).children(".link").css("background-image", "url(/img/line.png)");
$(this).children(".link").css("background-repeat", "repeat-x");
$(this).children(".cursor").css("background-image", "url(/img/cursor.png)");
$(this).children(".cursor").css("background-position", "center");
$(this).children(".cursor").css("background-repeat", "no-repeat");
});

$(".topmenu").mouseleave(function(event) {
	$(this).children(".righthover").css("background-image", "");
$(this).children(".lefthover").css("background-image", "");
$(this).children(".link").css("background-image", "");
$(this).children(".link").css("background-repeat", "");
$(this).children(".cursor").css("background-image", "");
$(this).children(".cursor").css("background-position", "");
});
});


