$(function() {
	
	/*
		Begin jQuery UI Functions
	*/
	// This adds the ability to move the card box around
	$('#page').draggable({ handle: '#page-header', axis: 'x', containment: 'body', scroll: false, grid: [20,20] });
	
	$('#portfolio-list').filterable();
	
	$("a.switch_thumb").toggle(function(){
	  $(this).addClass("swap"); 
	  $("#portfolio-list").fadeOut("fast", function() {
	  	$(this).fadeIn("fast").addClass("thumb-view"); 
		 });
	  }, function () {
      $(this).removeClass("swap");
	  $("#portfolio-list").fadeOut("fast", function() {
	  	$(this).fadeIn("fast").removeClass("thumb-view");
		});
	});
			
});

