$(function(){
	$("#mainNav img").each(function(){
		$(this).hover(
			function(){
				$(this).attr('src','/img/nav/btn_' + $(this).attr('title') + "-active.gif");
			},
			function(){
				if(!$(this).attr('active'))
				{
					$(this).attr('src','/img/nav/btn_' + $(this).attr('title') + ".gif");
				}
			});
	});
});
