// Panels Tutorial

$(function(){
    $('.packs>div').hide();
    $('.packs>div:first').show();
    $('.packs>p').click(function() {
        $(this).next().animate({'height':'toggle'},'slow','easeOutBounce');
    });
    
    
    $('.page_item').hover(function() {
        $(this).stop().animate({"backgroundPosition":"(0px -105px 0px 0px)"},200);
	}, function() {
        $(this).stop().animate({"backgroundPosition":"(0px 0px 0px 0px)"},800);	
	});
	

});





