$(document).ready(function(){	
			
			
			
			
			
			$('#bird').hover(
			function () {
    			$('#header').css('background-position', 'center -196px');
				$('#header').css('z-index', '99');
  			},
 			function () {
    			$('#header').css('background-position', 'center -0px');
				$('#header').css('z-index', '1');
  			}); 
			
			
			
			


});
