/**
  *	Common Javascript Functions
	*	Author: TJ Kelly
	*/
$(window).load(function(){

	// Include Enriched CSS
	$('<link rel="stylesheet" type="text/css" href="/css/2010-enriched.css" />').appendTo('head');
	
	// Rel External for new window
	var $a=$('a[rel*="external"]');
	$a.attr('target','_blank');
	
});