function jQueryInit() {

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Global Behaviors

// Open External Links in Seperate Page
$("a[rel=external]").external();

// Run FancyBox
$("a.thumb").attr('rel','gallery').fancybox({
	'overlayOpacity' : 0.7,
	'overlayColor'   : '#000000',
	'opacity'		     : true,
	'transitionIn'	 : 'elastic',
	'transitionOut'	 : 'elastic',
	'padding'        : 0
});

// Adjust Nav for Current Page
$('nav a').each(function(){
	if($('body').attr('class') == $(this).attr('id'))
	{
		$(this).addClass('thisPage');
	}
	else
	{
		$(this).removeClass('thisPage');
	}
});



// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Module Behaviors

// Initialize Social Networking Buttons

// Facebook Like Button
$("#social iframe").attr('allowTransparency', 'true');

// Twitter Retweet Button
$("a.twitter-share-button").attr({
	"data-count" : "vertical"
});
$.getScript('http://platform.twitter.com/widgets.js');

// Google+ Button
$("div.g-plusone").attr('data-size', 'tall');
$.getScript('https://apis.google.com/js/plusone.js');



}
