$(document).ready(function() { 
		
		// Superfish Dropdown
		$('.sf-menu').superfish();		
		
		// Calendar Tooltip
		$('#calendar a.event').tooltip({ 
		    bodyHandler: function() { 
        return $($(this).children("span")).html(); 
    }, 
    showURL: false,
		left: -200
		});
		
		// Open External Links
		$('a.ext').click(function() {
			window.open(this.href);			
			return false;
		});
		
		// Scroll to top of page
		$('.top').click(function(){
			$('html, body').animate({scrollTop:0}, 'slow');
			return false;
		});
		
		// Stripe Tables
		$('table tr:even').addClass('alt');
		
		// Countdown
		var springs = new Date(2009, 3-1, 21, 8, 30);
		$('#countdown').countdown({until: springs}); 
		
}); 