// JavaScript Document
$(document).ready(function(){
		
		
   $('.leftNavInfo Img').mouseover(function(e){
		var navId = e.target.id;
		 if(navId=='schoolNav17'){ return;}
		document.getElementById(navId).style.cursor='pointer';
	     $("#"+navId).attr({ 
          src: "images/"+navId+".jpg"
        });
		 
	 });
  
   $('.leftNavInfo Img').mouseout(function(e){
         var navIdout = e.target.id;
		 if(navIdout=='schoolNav17'){ return;}
		 document.getElementById(navIdout).style.cursor='pointer';
		 if(navIdout==schId){
		  }else{
			navR = navIdout.replace('2','1');
		     $("#"+navIdout).attr({ 
              src: "images/"+navR+".jpg"
           });
		 }
		 
	 });
   
   $('.leftNavInfo Img').click(function(e){
		var soucer1 = e.target.id;
		schId = soucer1;
		if(soucer1=='schoolNav17'){ return;}
		for(var i=1;i<=6;i++){
		    $("#schoolNav2"+i).attr({ 
              src: "images/schoolNav1"+i+".jpg"
           });
		}
		 
		  $("#"+soucer1).attr({ 
              src: "images/"+soucer1+".jpg"
           });
        if(schId=='schoolNav22'){
		  window.location.href='secondary.html';
		  }
		   if(schId=='schoolNav21'){
		  window.location.href='managementF51.html';
		  }
		   if(schId=='schoolNav23'){
		  window.location.href='all_around1.html';
		  }
		  if(schId=='schoolNav24'){
		  window.location.href='comparison.html';
		  }
		    if(schId=='schoolNav25'){
		  window.location.href='enviroment1.html';
		  }
		  if(schId=='schoolNav26'){
		  window.location.href='management.html';
		  }
	
	 });
	
   

	
  
});
