﻿jQuery.noConflict();

jQuery(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	jQuery("a").click(function(){
		jQuery(this).blur();
	});
	
	//When mouse rolls over
	jQuery("li").mouseover(function(){
		jQuery(this).stop().animate({height:'100%'},{queue:false, duration:1200, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	jQuery("li").mouseout(function(){
		jQuery(this).stop().animate({height:'94px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	
});
