$(document).ready(function(){
	
	

	//$("#topTab").dropShadow({left: 10, top: 10, blur: 9});
	
	$("html,body").animate({scrollTop:438}, 'slow');
	
	$("#events ul.todays li a:even, #events ul.upcoming li a:even").css({
	background: "url(./css/images/events_66.png) repeat-y"
	});
	
	$("#events ul.todays li a:odd").css({
	background: "url(./css/images/events_98.png) repeat-y"
	});
	
	$("#events ul.upcoming li a:odd").css({
	background: "url(./css/images/events_130.png) repeat-y"
	});
	
	$("#events ul.upcoming li a").mouseover(function(){
	background: "#fff"
	});
	
	$("#events ul.upcoming li:odd a").mouseout(function(){
	background: "url(./css/images/events_130.png) repeat-y"
	});
	
	/*home*/
	$(".home #content #leftContent h1.articles a, .home #content #rightContent h1.coverage a, .home #content #rightContent h1.newsFeed a").text("");
	
	$("#topTab").toggle(
  function () {
    $(this).css({
	background: "url(./css/images/toptab_roll.png) right"
	});
	$(this).animate({top: "0px"}, 200);
	$("#topTab a span").text("hide the project");
	$("html,body").animate({scrollTop:0}, 'fast');
    },
  function () {
    $(this).css({
	background: "url(./css/images/toptab_roll.png) left"
	});
	$(this).animate({top: "438px"}, 200);
	$("#topTab a span").text("view the project");
	$("html,body").animate({scrollTop:438}, 'fast');
  }
);


			
});