$(document).ready(function(){
	
 	//Initialize the font sizer for the site.
	var options = { min: -4, max: 4};
	$.FontSizer.Init(options);

	// External Links
	$("a[@href^=http]").each(
		function(){
			if(this.href.indexOf(location.hostname) == -1) {
				$(this).attr('target', '_blank');
			}
	
		}
	);
	
	// Content External Links
	$("#contentwrapper a[@href^=http]").each(
		function(){
			if(this.href.indexOf(location.hostname) == -1) {
				$(this).attr('target', '_blank')
					.attr('class', 'external-link')
					.attr('title', 'External link (will open in new window)');
			}
	
		}
	);
	
});