	$(document).ready(function(){
		/* Table Striping */
		$("table.striped tbody tr:nth-child(odd)").addClass("oddRow");
		$("table.striped tbody tr:nth-child(even)").addClass("evenRow");
		
		/* External Links & PDFs in New Window */
		var host = window.location.host.toLowerCase();
		$("a[href^='http:']").not("[href*='vectran.openvision.com']").attr('target','_blank');
		$("a[href$='.pdf']").attr('target','_blank');
		$("a[href*='/LinkClick.aspx']").attr('target','_blank');

		/* JQuery Cycler code */
		$("#dnn_BannerPane .c_contentpane div div.Normal div").cycle({
			fx: 'fade'
		});
		
		/*LastChild in Menu */
		$("nav#primaryNav ul.sf-menu:last-child").addClass('last-child');
		
		/* Even Heights */
		var highestCol = Math.max($('#dnn_SidebarPane .containerContent').height(),$('#dnn_ContentPane .containerContent').height(),$('#dnn_SecondPane .containerContent').height());
		$('.evenHeight .containerContent').height(highestCol);
	});

