$(document).ready(function() {

		$(".main_li").hover(
		  function () {
			
			$(this).find(".sub_menu").show();
			
			if (!$(this).hasClass("current")) {
				if (!$(this).hasClass("first")) {
					$(this).css("background", "#fff url('img/top_menu_black.jpg') repeat-y 0.2em 0");
				} else {
					$(this).css("background", "#000 url('img/top_menu_black.jpg') repeat-y 0.2em 0");
				}
			} 
			
			if (!$(this).next().hasClass("current")) {
				//$(this).next().css("background","none");
			}
		  }, 
		  function () {
			$(this).find(".sub_menu").hide();
			
			if (!$(this).hasClass("current")) {
				if (!$(this).hasClass("first")) {
					$(this).css("background", "#000 url('img/main_menu_separator.gif') repeat-y 0 0");
				} else {
					$(this).css("background","none");
				}
				
			}
			if (!$(this).next().hasClass("current")) {
				$(this).next().css("background", "#000 url('img/main_menu_separator.gif') repeat-y 0 0");
			}
		  }
		);

});