$j(document).ready(function() {
	
	$j("form :text").defaultValue();
	
	$j('#menu li').mouseover(function() {
		obj=$j(this);
		if(!obj.is(".current")){
			$j(this).css("background","#ffffff url(images/top-menu-inner-a-bullet-left.png) no-repeat left top");
			$j(this).find("a").css("color","#555555");
			$j(this).find("a").css("background","url(images/top-menu-inner-a-bullet-right.png) no-repeat scroll right top");
		}
	});
	
	$j('#menu li').mouseout(function() {
		obj.find("a").removeAttr('style');
		obj.removeAttr('style');
	});
	
});
