// JavaScript Document
$(document).ready(function() {
	$("#navUL > li > a").each(function(){
		if(location.href.match(this.href)) {
            $(this).addClass("currentPage");
        }
    });
	
	$("#newsContent .section:even").addClass("odd");
});
