// JavaScript Document


/* jQuery Menu */	
	/* Enters jQuery  ta da!!!!!!!*/
$(document).ready(function(){
		$('#mnu00').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu_00_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu_00.gif'});    }
        );			
		$('#mnux00').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu00_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu00.gif'});    }
        );			
		$('#mnu01').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu01_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu01.gif'});    }
        );			
		$('#mnu02').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu02_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu02.gif'});    }
        );			
		$('#mnu03').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu03_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu03.gif'});    }
        );			
		$('#imnu03').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/i/mnu03_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/i/mnu03.gif'});    }
        );			
		$('#mnu04').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu04_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu04.gif'});    }
        );			
		$('#mnu05').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'img/mnu05_o.gif' });
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'img/mnu05.gif'});    }
        );			
		
		
});