$(document).ready(function() {
	//When page loads...
    jQuery('.teaserLink').click(function(event){
		event.preventDefault();
		event.stopPropagation();
		
		toggleTeaser(400);
	});
	
	function toggleTeaser(duration){
		var teaserDisplay = jQuery('.teasers .content');
		// Find out if sitemap is currently visible
		var isOpen = teaserDisplay.is(':visible');
		
		if(isOpen){
			teaserDisplay.slideUp(duration);

			// Remove open class to all control links			
			jQuery('.teasers').removeClass('open');
		}else{
			teaserDisplay.slideDown(duration);

			// Add open class to all control links			
			jQuery('.teasers').addClass('open');
		}
	}
	
	toggleTeaser(2000);
});
