$(function() {
	$('div.mainNav div.mainMenu').hover(
	    function() {
	    	$('div.subMenu', $(this)).show().css('left', '229px');	
		},
		function() {
			$('div.subMenu', $(this)).hide();
		}
	);
	$('div.mainNav a.menu').hover(
	    function() {
	    	var theImage = $('img', $(this));
			theImage.attr('src', theImage.attr('src').replace('_n.', '_h.'));
		},
	    function() {
	    	var theImage = $('img', $(this));
			theImage.attr('src', theImage.attr('src').replace('_h.', '_n.'));
		}
	)	
});