$(function(){
		$('ul, ol').each(function(){
			//$(this).find('li:first').addClass('first');
			//$(this).find('li:last').addClass('last');
			$('li:first', this).addClass('first');
			$('li:last', this).addClass('last');
		});
		
		$('#mainNav').css('top', '40px');
		
		$('#topNavigation').mouseenter(function(){
			$('#mainNav').stop().animate({
				'top' : 0
			}, 500);
		}).mouseleave(function(){
			$('#mainNav').stop().animate({
				'top' : 40
			}, 500);
		});
		
		
		if($('.bottom.left.column').height()>$('.bottom.right.column').height())
		{
			$('.bottom.right.column a.contact:last').css('margin-top', $('.bottom.left.column').height()-$('.bottom.right.column').height());
		}
		else if($('.bottom.left.column').height()<$('.bottom.right.column').height())
		{
			$('.bottom.left.column a.contact:last').css('margin-top', $('.bottom.right.column').height()-$('.bottom.left.column').height());
		}
});
