$(document).ready(function() {
 
 //Table Row Highlights
 $('table').highlight()
 
 //Document Icons
 
	// Add pdf icons
	$("a[href$='.pdf']").addClass("pdf");
 
	// Add txt icons
	$("a[href$='.doc'], a[href$='.txt'], a[href$='.rtf']").addClass("txt");
 
	// Add email icons
	$("a[href^='mailto:']").addClass("email");
 
	//Add external link icons
	$('a').filter(function() {
		//Compare the anchor tag's host name with location's host name
	    return this.hostname && this.hostname !== location.hostname;
	  }).addClass("external").attr("target", "_blank"); //Always open in new window
	
	//Table Row Links?
	
	
	//Popup Windows
	var popupTypes =
	{
		popupBig:
		{
			height:700,
			width:620,
			status:1,
			scrollbars:1,
		},
	};
	
	$(".popup").popupwindow(popupTypes);
	
	//Rollovers
	$("img.button").hover(
	 function()
	 {
	  this.src = this.src.replace("Off","On");
	 },
	 function()
	 {
	  this.src = this.src.replace("On","Off");
	 }
	);
});