/* GENERAL FUNCTIONS
-----------------------------------------------------*/
(function($) {
	var loc = String(window.location);
	var pagePath = getPath();
		  
	function getPath() {
		var temp = loc.split('/');
		for(var i=0; i<3; i++) {
			temp.shift();	
		};
		return temp.join('/');
	};
		  
	function currentSection() {
		var loc = String(window.location);
		$('.sidebar a[href$='+pagePath+']').addClass('selected');
	};
		  
	$(document).ready(function() {
		currentSection();
		$("tbody tr").filter("tr:odd").addClass("odd").end().filter("tr:even").addClass("even"); 				// TABLE STRIPING	
		$("a[@href^='http://'],a[@href$='.doc'],a[@href$='.pdf'],a[@href$='.jpg'],a[@href$='.png'],a[@href$='.gif']").attr("target", "_blank");	// EXTERNAL LINKS IN NEW WINDOW
	});
})(jQuery);
