$(document).ready(function(){
	$('#banner').spotlight({displayTime: 3});  // .... header image rotator
	$('#maincol p:first').addClass('lead'); // .... assigns classname to first paragraph
	$('.EventCalDayOfWeekCell:first').addClass('border'); // .... assigns classname to first td cell 
	$('.EventCalMonthWeekRow .EventCalWENE:nth-child(1)').addClass('border2'); // .... assigns classname to first td cell in the tr 
	$('#Navigation > ul > li > a') // .... animate first level menu anchor background on mouseover
		.css( {backgroundPosition: "-20px 45px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-20px -100px)"}, {duration:400})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(40px 0px)"}, {duration:100, complete:function(){
				$(this).css({backgroundPosition: "-20px 45px"})
			}});
		}); // .... end animated background
});
