/////////////////////////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse is removed
//  $(".outer2").mouseout(function(){
//	$(this).stop().animate({opacity: 0.99,height:'36px'},{queue:false, duration:600, easing: 'easeOutBounce'})
//  });
	
		//When mouse rolls over
//	$(".outer2").mouseover(function(){
//		$(this).stop().animate({opacity: 0.90,height:'112px'},{queue:false, duration:600, easing: 'easeOutBounce'})
//	});
	
		$(".outer4").mouseout(function(){
		$(this).stop().animate({opacity: 0.99,height:'36px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	$(".outer4").mouseover(function(){
		$(this).stop().animate({opacity: 0.90,height:'88px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
/////////////////////////////////////////////////////////////////////////////////////////////////
