jQuery(document).ready(function(){
	jQuery('ul#mainMenu>li>a').each(function(){
		imageName = jQuery(this).html().toLowerCase().split(' ').join('_');
		//alert(imageName);
		jQuery(this).css({
			'background':'url(/content/wp-content/themes/hm-b/images/menu_'+imageName+'.gif) no-repeat',
			'text-indent':'-9999px'
		});
	});
	jQuery('ul#mainMenu>li>ul>li>a').each(function(){
		imageName = jQuery(this).html().toLowerCase().split(' ').join('_').replace('&amp;','&');
		//alert(jQuery(this).outerWidth());
		//jQuery(this).css({
		//	'background':'url(images/submenu_'+imageName+'.gif) no-repeat 12px 0'
		//});
		jQuery(this).html('<image src="/content/wp-content/themes/hm-b/images/submenu_'+imageName+'.gif" />');
	});
	
	//jQuery(':header a').css({
		//'color':'#444444',
		//'text-decoration':'none'
	//});
	
	jQuery('.article:first-child').css({
		'background':'none'
	});
	jQuery('.article h3:only-child').css({
		'margin-bottom':'14px'
	});
	
});