$(document).ready(function(){

	$('body').addClass('js');
	
	// Tabs for Contact Area
	
	var tabContainers = $('div#contact-area div.tab-sections');
			tabContainers.hide().filter(':first').show();
			
			$('div#contact-area ul#contact-nav a').click(function () {
	    		tabContainers.hide();
	    		tabContainers.filter(this.hash).show();
	    		$('div#contact-area ul#contact-nav a').removeClass('active');
	    		$(this).addClass('active');
	    		return false;
	    	}).filter(':first').click();
	
	// General Tabs for Content Areas
	
	var tabContent = $('div.tab-control div.tab-content');
			tabContent.hide().filter(':first').show();
			
			$('div.tab-control ul.tab-list a').click(function () {
	    		tabContent.hide();
	    		tabContent.filter(this.hash).show();
	    		$('div.tab-control ul.tab-list a').removeClass('active');
	    		$(this).addClass('active');
	    		return false;
	    	}).filter(':first').click();
	    	
	// Adding the class of "pdf" to all links that point to a pdf file
	
	$("a[href$='pdf']").parent().addClass("pdf");
	
});