$(function(){

	ob = $('.menuTop').children('div').children('div').children('ul').children('li').children('ul');
	
	MenuWidth = $('.menuTop').children('div').children('div').width();
	
	MenuLiWidth = 0;
	$('.menuTop').children('div').children('div').children('ul').children('li').each(function(){
		MenuLiWidth += $(this).width();
	});
	$('.menuTop').children('div').children('div').css('margin-left', (MenuWidth-MenuLiWidth)/2)
	
	
	$('li:eq(0)',ob).addClass('first');
	$('li li:eq(0)',ob).addClass('first');
	
	$('.menuTop').children('div').children('div').children('ul').children('li').each(function(){
		$('ul li',$(this)).each(function(){
			$('ul',$(this)).css('left',$(this).parent().width()-2);
		});
	});	
});

function WindowUpLoad(url, width, height){
	var scroll = "no";
	var top=0, left=0;
	if(width > screen.width-10 || height > screen.height-28) scroll = "yes";
	if(height < screen.height-28) top = Math.floor((screen.height - height)/2-14);
	if(width < screen.width-10) left = Math.floor((screen.width - width)/2-5);
	width = Math.min(width, screen.width-10);
	height = Math.min(height, screen.height-28);
	var wnd = window.open(url,"popup","width="+width+",height="+height+",scrollbars="+scroll+",resizable=yes,left="+left+",top="+top);
	return false;
}