$(document).ready(function(){
	marginthis();
	$(window).resize(function() {
		marginthis();
	});
	$('.top-menu li:last a').addClass("last");
	$('.top-menu li').hover(function(){
		var top = $(this).position();
		var _top = top.bottom;
		var _left = $(this).width();
		var _this = $(this); 
		$(this).addClass('active'); 
		$(this).find('ul').addClass("current");
		$(this).find('ul').css({'display':'block','z-index':'999'});
	},function(){
		$(this).removeClass("active");
		$(this).find("ul").removeClass("current");
		$(this).find('ul').css({'display':'none'});
	});
	function marginthis(){
		var bheight =$(window).height();
		var topmargin = (bheight - 578)/2;
		$('#wrapper').css({'margin-top': topmargin+'px'});
	}
});

