/*
 * elos.js 
 * contains customized js code for the elos site including settings used by other javascript libraries. 
 */


/*
 * Sets the jquery fancybox for zooming images
 */
	$(document).ready(function() {
		$("a.zoom").fancybox({
			'overlayOpacity'	:	0.7,
			'overlayColor'		:	'#000',
			'zoomSpeedIn'		:	500,
			'zoomSpeedOut'		:	250,
			'easingIn': 		"easeInSine",
			'easingOut': 		"easeOutSine"
		});
	});
	
	
/*
 * Sets the jquery cycle slideshow for the homepage
 */	
	$(document).ready(function() {
    $('#home_image').cycle({
    fx:      'fade', 
    speedIn:  500, 
    speedOut: 1500, 
    easeIn:  'jswing', 
    easeOut: 'jswing', 
    sync:     0, 
    delay:    -3000,
    timeout:  6000
	});
});
