// JavaScript Document

$(document).ready(function(){  
 
 	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
 
    //When mouse rolls over  
    $("h1").mouseover(function(){  
        $(this).stop().animate({height:'105px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
    //When mouse is removed  
    $("h1").mouseout(function(){  
        $(this).stop().animate({height:'75px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
     });  
 
 });  
