$(document).ready(function() {

	if(!$.browser.msie) {
		$('.navitem').hover(
			function(){
				$(this).children('.topnavicon').css({'opacity':'1'});
			},
			function(){
				$(this).children('.topnavicon').css({'opacity':'0.7'});
			}
		);
	}
	
		
	$('.centerme').each(function(){
		var padding = ($(this).parent().height() - $(this).height())/2;
		$(this).css({'padding-top':padding});	
	});
	
});
