function jQueryInit() {

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

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

// ToolTip
$('*[title]').leviTip();

// Theme Switcher
setPage();
setTheme();

$('div#themes a').each(function(){

	var newTheme = $(this).attr('id');

	$(this).click(function(event){
		$('body').fadeOut('slow',function(){
			var oldTheme = $('body').attr('class');
			var oldURI   = $('#theme').attr('href');
			var newURI   = oldURI.replace(oldTheme,newTheme);
			$('#theme').attr('href',newURI);
			if(newTheme == "default")
			{
				$('#structure').remove();
			}
			else
			{
				if($('#structure').length == 0)
				{
					$("<link />",structureLink).insertAfter('#theme');
				}
			}
			$('body').removeClass().addClass(newTheme);
			setPage();
			setTheme();
		}).fadeIn('slow');
		$.cookie('theme',newTheme,{path:'/',expires:99});
		event.preventDefault();
		return false;
	});
});

// Initialize Social Networking Buttons
$("#social").css({display:'block'});

// Facebook Like Button
$("#social iframe").attr({
	"allowTransparency" : "true",
	"frameborder"       : "0",
	"scrolling"         : "no"
});

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

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

// LinkedIn Button
$("div#linkedin script").attr({
	"type"         : "IN/Share",
	"data-url"     : "http://www.visualsymphony.net/",
	"data-counter" : "top"
});
$.getScript('http://platform.linkedin.com/in.js');



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

// Initialize Slides
$('#slides').slides({
	preload: true,
	preloadImage: 'http://static.visualsymphony.net/graphics/home/loading.gif',
	generatePagination: true,
	play: 5000,
	pause: 5000,
	hoverPause: true,
	// Get the starting slide
	start: 1
});



}
