/* GENERAL FUNCTIONS
-----------------------------------------------------*/
(function($) {
	function matchHeights() {
		if ($('.major').attr('offsetHeight')<$('.minor').attr('offsetHeight')) $('.major').css({ height:$('.minor').attr('offsetHeight'), position:'relative' }).find('.end').css({ position:'absolute', bottom:0 });
	}

	$(document).ready(function() {
		$("tbody tr").filter("tr:odd").addClass("odd").end().filter("tr:even").addClass("even"); 				// TABLE STRIPING	
		$("a[@href^='http://'],a[@href^='https://'],a[@href$='.doc'],a[@href$='.pdf'],a[@href$='.jpg']").attr("target", "_blank");	// EXTERNAL LINKS IN NEW WINDOW
		//matchHeights();
	});
})(jQuery);
