/*

BASE Functions

==================================================================================================================*/	

//jQuery Load
$(document).ready(function() {
	// Adjust TypeKit script-font sizes for js on
	/*$('blockquote').css({ "font-size": "1.5em" });
	$('blockquote', '.inner-photo').css({ "font-size": "1.286em" });*/
	
	$('#navigation > ul > li > a').append('<span class="swipe"></span>').css('background', 'none');
	$('#navigation > ul > li').hover(function () {
		$(this).children('a').find('.swipe').stop().animate({ width:'100%'}, 400);
	}, function() {
		$(this).children('a').find('.swipe').stop().css('width', '0');
	});
	
	$('#newsletter-signup input[type=text]').placeholder({ noteID: '.note' });	

},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');
}
