// JavaScript Document

$().ready(function() { // Univeral ready funtion for whole page


// ============== Global ========================

	// Activate "Close" links when JS enabled
	$('.closeLink').css('display', 'inline'); // Used on About Us pages 
	$('#tabsMenu').removeClass('noJsHide'); // JS ACTIVE - Display tabs 
	$('.activeJS-Hide').hide(); // JS ACTIVE, hide elements only requied when JS is DISABLED 
	//$( 'html, body' ).animate( { scrollTop: 0 }, 0 ); //Scroll to top of page On Load



	
//===================================================================
}); // Close Univeral ready funtion for whole page
