/*KADOYAN.com (c)KADOYAN 2008.12.28*/

$(function() {
	init();
	$(".map").mouseover(function() {
		var url = $(this).attr("href").replace("php","gif");
		$("#manmap").attr("src","images/"+url);
	});
	$(".map").mouseout(function() {
		init();
	});
	function init() {
		var spliturl = location.href.split("/");
		var def = spliturl[spliturl.length-1].replace("php","gif");
		$("#manmap").attr("src","images/"+def);
	};
});