/*
	 (c) 2011 CREATiVE Web Studio
	 Purpose for used in 'GWE-Myanmar Main Menu Bar' 
	 by Phyo Zaw Tun
	 Date 11, July, 2011.
*/
function CWS_menubar(hoverColor,normalColor){
		/*
		$("ul#menu li").mouseenter(function () {

			$(this).animate({
				backgroundColor: hoverColor 
			},500);
		
			$(this).children("a").animate({
				'margin-top': '30px',
				color: "#303030" ,
				opacity: 1.0
			},250).animate({
				'margin-top': '-30px',
				color: "#303030",
				opacity: 0.00
			},1).animate({
				'margin-top': '0px',
				color: "#303030" ,
				opacity: 1.00
			},250);
			
		});
		
		$("ul#menu li").mouseleave(function () {
		
			$(this).animate({
				backgroundColor: normalColor 
			},1500);
			
			$(this).children("a").animate({
				'margin-top': '30px',
				color: "#303030" ,
				opacity: 1.0
			},250).animate({
				'margin-top': '-10px',
				color: "#303030" ,
				opacity: 0.00
			},1).animate({
				'margin-top': '0px',
				color: "#fff" ,
				opacity: 1.00
			},1200 );

		});		
		*/
		
}


