(function($) {
	$("body").addClass("jsEnabled");
	
	// Make links marked external open in new window
	$("a[rel^='external']").attr("target", "_blank");
	
	//Add zebra-striping to tables
	if ( !$("table").hasClass("noStripe") ) {
		$("table tr:odd").addClass("odd");
	}
	
	//Automatically selects focused field text and adds class for styling
	$('input[type="text"]').focus(function(){
		$(this).select().addClass("focused");
	});
	$('input[type="text"]').blur(function(){
		$(this).removeClass("focused");
	});
	
})(jQuery); 
