$(document).ready(function() {
	
	// Slideshow
    $('.slideshow').cycle({
		fx: 'fade',
		cleartype: 1,
    	speed: 5000
    });
    
    $('#commercialSlideshow').cycle({
		fx:    'fade',
    	speed:  4000
    });
    
    $('#residentialSlideshow').cycle({
		fx:    'fade', 
    	speed:  4000
    });
	
	$('#standardSlideshow1').cycle({
		fx:    'fade', 
    	speed:  4000
    });
	
	$('#standardSlideshow2').cycle({
		fx:    'fade', 
    	speed:  4000
    });
	
	$('#standardSlideshow3').cycle({
		fx:    'fade', 
    	speed:  4000
    });
    
    $('#associationsSlideshow').cycle({
		fx:    'fade', 
    	speed:  3000
    });

	// Accordion Menu
	jQuery('#theMenu').Accordion({    
		active: true, 
		selectedClass: '.selected',
	    header: '.head', 
	    navigation: true,    
	    event: 'mouseover', 
	    animated: true,
		showSpeed: 400,
		hideSpeed: 0
	});
	
	// FancyBox
	$("a.fancybox").fancybox({
		'zoomSpeedIn':		800, 
		'zoomSpeedOut':		800, 
		'zoomOpacity':		false,
		'overlayShow':		false,
		'overlayOpacity':	.35,
		'easingIn':			'easeOutBack',
		'easingOut':		'easeOutBack',
		'zoomOpacity':		'true'
	});
	
});	
