(function($) {
	$("body").addClass("jsEnabled");
	
	Cufon.replace("h2"); 
	
	$("#relatedVideo a").prettyPhoto({
		animationSpeed: 'normal',
		allowresize: false,
		showTitle: false,
		theme: 'light_rounded'
	});
	
	//Open PDFs in a different window
	$('a').each(function(){
		var href = $(this).attr('href');
		if(href.indexOf('.pdf') != -1){
			$(this).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); 

