jQuery(document).ready(function() {
	jQuery('#unv_area img').mouseover(function(){
	 if( this.className != "act" ){
		var imgpath = $(this).attr("src").replace(".jpg", "_on.jpg");
		$(this).attr("src", imgpath);
	 }
	});
	jQuery('#unv_area img').mouseout(function(){
	 if( this.className != "act" ){
		imgpath = $(this).attr("src").replace("_on.jpg", ".jpg");
		$(this).attr("src", imgpath);
	 }
	});
});

