$(document).ready(function(){

    //When mouse rolls over
    $("li.sb").mouseover(function(){
        $(this).stop().animate({height:'100%'},{queue:false, duration:600, easing: 'easeOutCirc'})
    });

    //When mouse is removed
    $("li.sb").mouseout(function(){
        $(this).stop().animate({height:'32px'},{queue:false, duration:600, easing: 'easeOutCirc'})
    });

	//Hide (Collapse) the toggle containers on load
	$(".boxWrap").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("h6.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

});
