$.fn.menu = function(initial, settings) {
	$(this).children("li").addClass("menu_top_level");
	$(this).children("li").find("ul").hide();
	$(this).children("li").css("position","relative");
//	alert(cent);
	$(this).find("li").hover(function(){
		if ( !$.browser.msie ) {
			$(this).css("background-color","#C9E9C7");
		}
		$(this).children("ul").children("li").addClass("menu_element");
		$(this).children("ul").css("background-color","");
		$(this).children("ul").css("list-style","none");
		$(this).children("ul").css("display","block");
		$(this).children("ul").css("position","absolute");
		if ( $.browser.msie ) {
			if ( $(this).parent().parent().attr("id") == 'menu' ) {
				var fp = cent-250;
				//first level dropdown
				$(this).children("ul").css("left",fp+"px");
//				$(this).children("ul").css("top","0px");
			} else {
				$(this).children("ul").css("left","125px");
				$(this).children("ul").css("top","0px");
			}
			$(this).children("ul").css("right","1px");
		} else {
			$(this).children("ul").css("top","0px");
			$(this).children("ul").css("left","155px");
		}
		$(this).children("ul").css("border-left","0px solid #ffffff");
		$(this).children("ul").css("border-right","0px solid #ffffff");
		$(this).children("ul").css("padding","0");
		$(this).children("ul").css("z-index","10");
		/**/
	}, function() {
		if ( !$.browser.msie )
			$(this).css("background-color","");
		$(this).children("ul").removeClass();
		$(this).children("ul").hide();
	})
	
}