$(document).ready(function(){
	$(".horizontalcssmenu ul li").mouseenter(function(){
		$(this).css("background", "transparent url(/images/lm-main-right.gif) center right no-repeat");
		$(this).find("ul").css({
		"top" : "30px",
		"visibility" : "visible"
		});
		$(this).find("a.l1:not(.active)").css({
			"border-left" : "3px solid red",
			"padding-left" : "3px",
			"background" : "transparent url(/images/lm-main-left.gif) center left no-repeat"
		});
	});
	$(".horizontalcssmenu ul li:not(.active)").mouseleave(function(){
		$(this).css("background", "transparent");
	});
	$(".horizontalcssmenu ul li").mouseleave(function(){
		$(this).find("ul").css({
			"visibility" : "hidden"
		});
		$(this).find("a.l1:not(.active)").css({
			"border-left" : "1px solid silver",
			"padding-left" : "5px",
			"background" : "transparent"
		});
	});
});
