$(document).ready(function(){

    //When mouse rolls over
    $(".quick ul li p a").click(function(){
        $(".quick ul li").stop().animate({height:'370px'},{queue:false, duration:600, easing: 'easeOutExpo'})
        $(".subtext").stop().animate({left:'0px'},{queue:false, duration:0})
    });

    //When mouse is removed
    $(".closeup").click(function(){
        $(".quick ul li").stop().animate({height:'40px'},{queue:false, duration:200, easing: 'easeOutExpo'})
        $(".subtext").stop().animate({left:'-5000px'},{queue:false, duration:0})
    });


    //When mouse rolls over
    $(".quick2 ul li p a").click(function(){
        $(".quick2 ul li").stop().animate({height:'380px'},{queue:false, duration:600, easing: 'easeOutExpo'})
        $(".subtext2").stop().animate({left:'0px'},{queue:false, duration:0})
		$("#form1").stop().animate({left:'0px'},{queue:false, duration:0})
    });

    //When mouse is removed
    $(".closeup2").click(function(){
        $(".quick2 ul li").stop().animate({height:'40px'},{queue:false, duration:200, easing: 'easeOutExpo'})
        $(".subtext2").stop().animate({left:'-5000px'},{queue:false, duration:0})
		$("#form1").stop().animate({left:'-5000px'},{queue:false, duration:0})
    });

});
