$(document).ready(function(){
	
	//var selectedStyle = "background-color: #86bc2e; border-top: 1px; border-left: 0px; border-right: 0px; border-bottom: 1px; border-style: solid; border-color: gray;";
	var selectedStyle = "background: transparent url(images/selected-trans.png) repeat-x; border-top: 1px solid gray; border-bottom: 1px solid gray;";
	//var hoverStyle = "background-color: #abcc73; border-top: 1px; border-left: 0px; border-right: 0px; border-bottom: 1px; border-style: solid; border-color: gray;";
	var hoverStyle = "background: transparent url(images/hover-trans.png) repeat-x; border-top: 1px solid gray; border-bottom: 1px solid gray;";

	$("#navigation>ul>li").hover(
		function(){
			if($(this).attr("id") == "current"){				
			}
			else{
				$(this).attr("style", hoverStyle);}
			},
		function(){
			if($(this).attr("id") == "current"){
				$(this).attr("style", selectedStyle);
			}
			else{
				$(this).attr("style", "background-color: none; border: none");
			}
	});
});
