jQuery(document).ready(function(){

	//When mouse rolls over
	jQuery(".easter li").mouseover(function(){
		jQuery(this).stop().animate({height:'746px',bottom:'684px',overflow:'hidden'},{queue:false, duration:300, easing: 'easeOutBounce'});
	});
	
	//When mouse is removed
	jQuery(".easter li").mouseout(function(){
		jQuery(this).stop().animate({height:'62px',bottom:'0px',overflow:'hidden'},{queue:false, duration:300, easing: 'easeOutBounce'});
	});
	
	jQuery("a[rel='external']").click(function(){ this.target = "_blank"; }); 
});
