$(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
	$(".dropperComm").mouseover(function(){
		$(this).stop().animate({height:'180px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".dropperComm").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$(".dropperDed").mouseover(function(){
		$(this).stop().animate({height:'240px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".dropperDed").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$(".dropperFam").mouseover(function(){
		$(this).stop().animate({height:'330px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".dropperFam").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$(".dropperSmall").mouseover(function(){
		$(this).stop().animate({height:'310px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".dropperSmall").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$(".dropperEnt").mouseover(function(){
		$(this).stop().animate({height:'570px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".dropperEnt").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//$(".anim_queue_example2").mouseover(function(){
         //$(this).stop().animate({ left: 50 }, 'fast')
    //});
	
	//$(".anim_queue_example2").mouseout(function(){
         //$(this).stop().animate({ left: 0 }, 'fast')
    //});
	
});


 $(".anim_queue_example2")
  .hover(function() {
   $(this).stop().animate({ paddingleft: 20 }, 'fast');
  }, function() {
   $(this).stop().animate({ paddingleft: 0 }, 'fast');
  
});