// JavaScript Document
$(document).ready(function(){ 
	$(".LeftNav ul li:nth-child(4n+2)").addClass("linkTwo");
	$(".LeftNav ul li:nth-child(4n+3)").addClass("linkThree");
	$(".LeftNav ul li:nth-child(4n+4)").addClass("linkFour");
	$(".LeftNav ul li:nth-child(4n+5)").addClass("linkFive");
	$(".VerticalPageListDisplayComponent h2").addClass("h2Sub");
	$("h1").prependTo(".MainContentDisplay");
	$("p font").each(function() {
		$(this).replaceWith("<span>" + $(this).html() + "</span>");
							});
	$("p span").each(function() {
		$(this).replaceWith("<span>" + $(this).html() + "</span>");
							});
});
