$(document).ready(function() {
	
	$(".naviobj img").each(function(){
		if ( $(this).attr("rel") == "current" || $(this).attr("rel") == "section" ) $(this).attr("src", $(this).attr("srcactive") );
		$(this).attr("srcout", $(this).attr("src") );
	});
	
	$(".naviobj img").mouseover(function(){
		$(this).attr("src", $(this).attr("srcover") );
	});
	$(".naviobj img").mouseout(function(){
		$(this).attr("src", $(this).attr("srcout") );
	});
	
});