// JavaScript Document
$(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
	$("li#fold1").mouseover(function(){
		$(this).stop().animate({height:'328px'},{queue:false, duration:500, easing: 'easeOutBounce'})
	});
	//When mouse rolls over
	$("li#fold2").mouseover(function(){
		$(this).stop().animate({height:'418px'},{queue:false, duration:500, easing: 'easeOutBounce'})
	});
	//When mouse rolls over
	$("li#fold3").mouseover(function(){
		$(this).stop().animate({height:'118px'},{queue:false, duration:500, easing: 'easeOutBounce'})
	});
	//When mouse is removed
	$("li#fold1, li#fold2, li#fold3").mouseout(function(){
		$(this).stop().animate({height:'28px'},{queue:false, duration:500, easing: 'easeOutBounce'})
	});
});
