/**
 * Commone JQuery object/functions I find very useful
 */
$(document).ready(function(){

	// State JavaScript is enabled
	$('body').addClass('jsEnabled');

	// Open in External Window
	// Any anchor with rel="external" will open in a new window when clicked
	$('a[rel*="external"]').click(function() { window.open($(this).attr('href')); return false; });
});
