
jQuery.noConflict();

jQuery(document).ready(
	function(){

		// Header Slideshow
		jQuery('#headerImages').innerfade({
			speed: 2000,
			timeout: 5000,
			type: 'sequence',
			containerheight: '155px' }); 
	
		// Colorbox
		jQuery(".colorbox").colorbox({opacity:0.55});
		
		// Navigation
		jQuery("ul.sf-menu").superfish({ 
			animation: {height:'show'},   // slide-down effect without fade-in 
			delay:     1200               // 1.2 second delay on mouseout 
		}); 

		// Table Striping
		jQuery(".funkyTable tr:even").addClass("altrow");
	}
);