$(document).ready(function(){
//		var menu=$("ul.menuUL");
//		menu.css("margin-left",(950-menu.width())/2);
		
        $("ul.menuUL li").hover
		(
			 function()
			 {
				$(this).find("ul:first").animate({height:"toggle", opacity:"toggle"},300);
			},
			function()
			{
				$(this).find("ul:first").animate({height:"toggle", opacity:"toggle"},300);
			}
		)
		//$("ul.menuUL").first().find("li").hover
		$("ul.menuUL:first > li").hover
		(
			 function()
			 {
				$(this).data("bg",$(this).css("background"));
				$(this).css("background","url(img/menuBG_02.jpg) center top no-repeat");
			},
			function()
			{
				if(typeof($(this).data("bg"))=="undefined")
					$(this).css("background","");
				else
					$(this).css("background",$(this).data("bg"));
			}
		)
		$("ul.leftUL li").hover
		(
			 function()
			 {
				$(this).find("ul:first").animate({height:"toggle", opacity:"toggle"},300);
			},
			function()
			{
				$(this).find("ul:first").animate({height:"toggle", opacity:"toggle"},300);
			}
		)
		/*$("ul.menuUL li.first").hover
		(
		 	function()
			{
				var a=$(this).children("a.first");
				a.css("background","url('"+a.attr("src2")+"') center top no-repeat");
			},
			function()
			{
				var a=$(this).children("a.first");
				a.css("background","url('"+a.attr("src1")+"') center top no-repeat");
			}
		 )*/
		
})


