/*

BASE Functions

==================================================================================================================*/	

// Cufon Setup
Cufon.replace('h1, h2, #navigation a, #travel-links a, .contact-form p, label, #clocks .zonename', { fontFamily: 'Futura' });
Cufon.replace('.contact-form p', { textShadow: '1px 1px #ebebeb' });
Cufon.replace('.zonename', { textShadow: '1px 1px #5f5f5f' });

//jQuery Load
$(document).ready(function() {
	$('#travel-links').css({ 'font-size' : '18px' });
	$('#navigation a, #logo a, #contact-us a').click(function() {
		coords = $($(this).attr('href')).position();
		$(document).scrollTo($(this).attr('href'), 1000);
		return false;
	});
		
	// Do you have a plan? scroll
	$scroll = $('.paper-content-inner .inner2');
	$scroll.slideUp('fast');
	$('#plan-objectives').click(function () {
		var $toggle = $(this);
		$scroll.slideToggle('slow');
		$toggle.toggleClass('open');
	});

},function(){
	//GUnload();
});


// Print Page
function printThis() {
	(window.print) ? window.print() : alert('To print his page press Ctrl-P on your keyboard \nor choose print from your browser or device after clicking OK');
}
