$(document).ready(
	function()
	{
		$(".menu_item a").each(
			function()
			{
				var pic = $(this).attr("title");
				var img = new Image();
				img.src = "http://www.northjerseypartners.org/img/"+pic+"-rollover.jpg";
				
				$(this).parent().css({background:"url(http://www.northjerseypartners.org/img/"+pic+".jpg) no-repeat", width:"192px", height:"37px", padding:"0px"});
				$(this).parent().hover(
					function(){ 
						var pic = $(this).children(0).attr("title");
						$(this).css({background:"url(http://www.northjerseypartners.org/img/"+pic+"-rollover.jpg) no-repeat"}); 
						$(this).children(".submenu_items").css({top:"0px"});
						},
					function(){ 
						var pic = $(this).children(0).attr("title");
						$(this).css({background:"url(http://www.northjerseypartners.org/img/"+pic+".jpg) no-repeat"}); 
						$(this).children(".submenu_items").css({top:"-999px"});
						}
				);
			}
		);
		
		
	}
);