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-navbar").mouseover(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar1").mouseover(function(){
	jQuery(this).stop().animate({height:'384px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar2").mouseover(function(){
	jQuery(this).stop().animate({height:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar3").mouseover(function(){
	jQuery(this).stop().animate({height:'220px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar4").mouseover(function(){
	jQuery(this).stop().animate({height:'130px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	
	//When mouse is removed
	jQuery("#li-navbar").mouseout(function(){
		jQuery(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar1").mouseout(function(){
		jQuery(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar2").mouseout(function(){
		jQuery(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar3").mouseout(function(){
		jQuery(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	jQuery("#li-navbar4").mouseout(function(){
		jQuery(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	

});
