// JavaScript Document
jQuery(document).ready(function() {
	
		jQuery('#mycarousel').jcarousel({
			// Configuration goes here
		});
		
		
    /**
     * SHOW VIDEO HANDLER
     *
     * Author: waldemarm
     **/
    $('#showYachtVideoTab').click(function(e){
        e.preventDefault();
        e.stopPropagation();
		
        /** create highslide object **/
        hs.htmlExpand(this, {
			preserveContent: false, //disable iframe content caching
            objectType: 'iframe',
            width: 645,
            objectHeight: 510,
            objectLoadTime: 'after',
            allowWidthReduction: 1,
            showCredits: false,
            dimmingOpacity: 0.70,
            align: 'center'
			
        }
        );
    });		
		
});
