$(document).ready(function(){
						   
$("ol li:last-child, ul li:last-child, dl dd:last-child, table.styled tr th:last-child, table.styled tr td:last-child").addClass("last-child");  //  gives the last item a class of "last-child"
$("table.styled tr:last-child").addClass("last-row");  //  gives the last row of a styled table a class of "last-row"
//$("table.styled tr:nth-child(odd)").addClass("alt");  // adds alt class to alternating rows on styled tables
$('div#logo, div#masthead, blockquote').ifixpng();  // .png transparency fix
$("#content ol li").wrapInner("<span></span>");  // wraps ol with span
$("#content dl dd").wrapInner("<span class='block'></span>");  // wraps ol with span
$("#nav-const ul li a").wrapInner("<span></span>");  // wraps anchors in the constituent nav with span
$("#home h1.lead-in").wrapInner("<span></span>");  // wraps anchors in the constituent nav with span


$("#home #events dl.vevent:first, #home #news div.article:first").addClass("featured");
//  gives the first item on homepage a class of "featured"
$("#home #news .article-content ul, #home #news .article-content ol, #home #news .article-content dl").addClass("plain");
//  adds class of "plain to html elements in homepage articles

//$("#home #news .article-content table.styled").removeClass("styled");  //  

});