/* This script simply adds classes to the first and last li in the dropdown navigation.
	
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

$(document).ready(function(){
	$(".subNavigation li.on > a:first-child").addClass("on");
	$(".subNavigation li.active > a:first-child").addClass("active");
	$("table tr:nth-child(odd)").addClass("odd");
	$("table tr:nth-child(even)").addClass("even");
});
