// This JavaScript file activates and customizes plugins.

/* =====================================
	Contents :
	1. Toggle Domain Portfolio
===================================== */ 

$(function(){ // When the page is loaded...
		   

	// 1. Toggle the Domain Portfolio to hide and show your domain list
	// =====================================================================================================
	
	$('a#portfolioButton').click(function() {
		$('#domainPortfolio').slideToggle(400);
		return false;
	});		   		
});
