/* ------------------------------------------------------------------
global.js
Javscript functions that are used throughout the site.
------------------------------------------------------------------ */

$(document).ready(function(){  
  
  // Add .odd class to alternate table rows of table.table-data
  $("table.striped-table tbody tr:nth-child(odd)").addClass("alt");

	// Remove border from first item in the secondary navigation
	$("#secondary-navigation li:first-child").addClass("first");
	
	// sIFR calls
	if(typeof sIFR == "function"){
		sIFR.replaceElement(named({sSelector:"div.section-title h2", sFlashSrc:"/_assets/flash/tradegothicbold.swf", sColor:"#ffffff", sLinkColor:"#ffffff", sBgColor:"#487d8c", sHoverColor:"#ffffff"}));
	};
	
	$("a[title]").tooltip({ 
      track: true, 
      delay: 100, 
      showURL: false, 
      showBody: " - ", 
      opacity: 0.95 
  });

});





