
/**
 * Index JS handler
 *
 * Author: waldemar.matlosz
 */

/**
 * Protection against websites which dynamically include content on their pages 
 *
 */
//if(document.domain!='www.edmistoncompany.com'){
//	document.location.href='http://www.edmistoncompany.com/';
//}

jQuery(function() {


		/**
		 * Fading images (large)
		 **/
		$('#rotating_images').cycle({
			fx: 'fade',
			timeout: 3000,
			requeueOnImageNotLoaded: true			
		});	
	
});
/** eof jQuery **/


	/**
	 * Images under the world leaders in yachting 
	 */
    stepcarousel.setup({
            galleryid: "mygallery",
            beltclass: 'belt',
            panelclass: 'panel',
            panelbehavior: {speed:300, wraparound:true, persist:false},
            defaultbuttons: {enable: false, moveby: 1},
            contenttype: ['inline']
    });

	function _switch_to_back() {
		$('.next').hide();
		$('.back').show();
	}
	function _switch_to_next() {
		$('.back').hide();
		$('.next').show();
	}


	
