jQuery(function($){
	$('#Page #Header ul#globalNavi li a').hover(
		function(){
			$(this).css({'background-image' : $(this).css('background-image').replace('off.png','on.png'),
					'text-decoration' : 'underline'});
		},
		function(){
			$(this).css({'background-image' : $(this).css('background-image').replace('on.png','off.png'),
					'text-decoration' : 'none'});
		}
	);

	if($('#Page #Body .header h2').find('img').length == 0){
		$('#Page #Body .header').addClass('clover');
	}

});


