$(document).ready(function(){

	jQuery('#navigation ul').superfish({ 
	            animation: {height:'show'},   // slide-down effect without fade-in 
	            delay:     1200               // 1.2 second delay on mouseout 
	        });
	
	$("table.alternate_rows tr:even").addClass("even");
	
	$('a[href^=#][href!=#]','#content').live('click',function(e){
		$('html,body').animate({'scrollTop': $($(this).attr('href')).offset().top+'px'}, 1500, 'easeOutQuad'); 
		e.preventDefault();
	});
	
	$("a[rel='lightbox']").colorbox({maxWidth:"90%", maxHeight:"90%", current:""});

});