// JavaScript Document
$(document).ready(function(){
	attachRollOverEvent("img.menu_img");
});

attachRollOverEvent = function(imageId){
	$(imageId).mouseover( function(){ $(this).attr("src", $(this).attr("src").split('_n').join('_o')) } );
	$(imageId).mouseout( function(){ $(this).attr("src", $(this).attr("src").split('_o').join('_n')) } );
}