$(document).ready(function() {
	$("#menu ul li.main.active0").each(function() {
		$(this).hover(function() {
			$(this).css({"background" : "#8c0404 url('/img/bg_menu.png') 0 0 repeat-x"});
			$("a:first",this).css({"color" : "white"});
		}, function() {
			$(this).css({"background" : "transparent"});
			$("a:first",this).css({"color" : "black"});
		});
	});
	$("#menu ul li").each(function() {
		$(this).hover(function() {
			$("ul:first", this).show();
		}, function() {
			$("ul:first", this).hide();
		});
	});
	$("div.articleLeft:even").css({"margin-right" : "27px", "clear" : "both"});
});

