function mainNav(){
	this.init();
}

mainNav.prototype = {
	init: function(){
		$('div#topNav li.main').hover(
			function(){
				var width = $(this).width();
				$(this).find('a').eq(0).addClass('hovered');
				
				$(this).find('ul#ne').css('width', width + 'px').show();
				$(this).find('ul#services').css('width', width + 'px').show();
				$(this).find('ul#about ').css('width', width + 'px').show();
				$(this).find('ul#bc').css('width', width + 'px').show();
				
				if(navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') === -1)
					$(this).find('ul#ri').css('width', width-1 + 'px').show();
				else
					$(this).find('ul#ri').css('width', width + 'px').show();
			},
			function(){
				$(this).find('a').eq(0).removeClass('hovered');
				$(this).find('ul').hide();
			}
		);
		
		$('div#topNav li:last-child, div#topNav li li:last-child').addClass('last');
	}
}

$(function(){
	var mainNavObj = new mainNav();
});
