$(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 rolls over
	$(".bot").mouseover(function(){
		$(this).stop().animate(
							   {height:'140px'},
							   {queue:false, duration:500, easing: 'easeOutQuad'}
							   )
	});
	
	//When mouse is removed
	$(".bot").mouseout(function(){
		$(this).stop().animate(
							   {height:'30px'},
							   {queue:false, duration:300, easing: 'easeOutQuad'}
							   )
	});
	
	//When mouse is removed
	$(".lilangbot").mouseout(function(){
		$(this).stop().animate(
							   {height:'30px'},
							   {queue:false, duration:300, easing: 'easeOutQuad'}
							   )
	});
	
	//When mouse rolls over
	$(".lilangbot").mouseover(function(){
		$(this).stop().animate(
							   {height:'100px'},
							   {queue:false, duration:500, easing: 'easeOutQuad'}
							   )
	});
		
});
