// jQuery functions for the Forms section


$(document).ready(function(){
	
	// open external links in a new browser window
	$("#contentFrame a[@href^='http']").attr('target','_blank');
	
	// open pdf links in a new browser window, add pdf icon
	$("a[@href$='.pdf']").attr('target','_blank').attr('class','pdf');

	// open doc links in a new browser window, add doc icon
	$("a[@href$='.doc']").attr('target','_blank').attr('class','doc');
	
	// add zebra striping
	$(".striped tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".striped tr:even").addClass("odd");

});



