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