$(function(){

	$("#global-menubar ul.menu > li").each(function() {
		if ($(this).find("ul").length > 0){
			var obj=$(this),
			ul=obj.find("ul");
			
			if (ul.width() < obj.width()) ul.width(obj.width());
			
			obj.hover(function(){
				if($.browser.msie){
					ul.stop(true,true).show();
				}else{
					ul.stop(true,true).slideDown();
				}
			},function(){
				if($.browser.msie){
					ul.stop(true,true).hide();
				}else{
					ul.stop(true,true).slideUp();
				}
			});
		}
	});

	$(".subpage #site-main-content").css({'min-height':'400px'});
	
});

