jQuery(document).ready(function(){
	
	$(".seal").draggable();
	
	$(function() {
    $('h4 a').click(function(e) {
      $.get( $(this).attr('href'), function(data) {
          $('.archives').quicksand( $(data).find('li'), { adjustHeight: 'dynamic' } );
      });  
      e.preventDefault();  
  $.scrollTo('0',1000,{easing:'easeInOutQuint'});
  });
  });

});