﻿function initNavigationBar(currentIndex){
	$("#navigation_table img").each(function(i){
        if(i!=currentIndex){
	        $(this).bind("mouseover",function(){
	                var kzm=$(this).attr("src").match(/\.\w+$/ig);
				    $(this).attr("src",$(this).attr("src").replace(/\.\w+$/ig,"_pass"+kzm));
	        });
	        $(this).bind("mouseout",function(){
	                var kzm=$(this).attr("src").match(/_pass\.\w+$/ig)+"";
				    $(this).attr("src",$(this).attr("src").replace(/_pass\.\w+$/ig,"."+kzm.split(".")[1]));
    				
	        });
	        $(this).css("cursor","pointer");
	    }else{
	         var kzm=$(this).attr("src").match(/\.\w+$/ig);
			 $(this).attr("src",$(this).attr("src").replace(/\.\w+$/ig,"_pass"+kzm));
	    }
	});
}
