$(document).ready(function(){ $(window).load(function() { $('#splash-cover').animate({ 'height': 0, 'opacity': 0 }, 1000).fadeOut(0); }); // Fill image title with title attribute $('.gallery-div div p').html($(this).parent().find('img').attr('title')); // Gallery pause / play $('#gallery-controls-barbuda .play-pause').click(function(){ if ($('img', this).attr('src')=='images/gallery/controls/pause.png') { $('#gallery-barbuda').cycle('pause'); $('img', this).attr('src', 'images/gallery/controls/play.png'); } else { $('#gallery-barbuda').cycle('resume'); $('img', this).attr('src', 'images/gallery/controls/pause.png'); } }); // Start both gallery slideshow $('#gallery-barbuda').cycle({ fx : 'fade', easing : 'easeInOutSine', speed : 500, next : '#gallery-controls-barbuda .next', prev : '#gallery-controls-barbuda .prev', }); $('.gallery-div').cycle('pause'); // Swap galleries $('#gallery .section-title a').click(function(){ $('.gallery-div').not($($(this).attr('href'))).fadeOut(500); $($(this).attr('href')).fadeIn(500); $('#gallery .section-title a').not($(this)).removeClass('current'); $(this).addClass('current'); }); // Give Home link / content 'current' class on load $('nav a[href$="#home"]').addClass('current'); $('a.internal').click(function(){ $('gallery-div').cycle('pause'); // Fade out current box $('.content-box.current').css({ 'opacity': '0' }); setTimeout(function(){ $('.content-box.current').removeClass('current').css({ 'display': 'none' }); }, 500); // Give new box 'current' class var newBox = $(this).attr('href'); setTimeout(function(){ $('section'+newBox).addClass('current'); }, 600); // Fade in new box $($(this).attr('href')).css({ 'display': 'block', 'opacity': '1' }); // Swap link 'current' class $('nav a').removeClass('current'); $(this).addClass('current'); // Handle nav arrow image movement if ($(this).attr('href')=='#home') $('#nav-current-ico').animate({ 'top': '85px' }, 500, 'easeOutBounce'); else if ($(this).attr('href')=='#schedule') $('#nav-current-ico').animate({ 'top': '114px' }, 500, 'easeOutBounce'); else if ($(this).attr('href')=='#fares') $('#nav-current-ico').animate({ 'top': '144px' }, 500, 'easeOutBounce'); else if ($(this).attr('href')=='#tours') $('#nav-current-ico').animate({ 'top': '175px' }, 500, 'easeOutBounce'); else if ($(this).attr('href')=='#gallery') { $('#nav-current-ico').animate({ 'top': '204px' }, 500, 'easeOutBounce'); $('gallery-div').cycle('play'); } else if ($(this).attr('href')=='#contact') $('#nav-current-ico').animate({ 'top': '235px' }, 500, 'easeOutBounce'); else if ($(this).attr('href')=='#faq') $('#nav-current-ico').animate({ 'top': '265px' }, 500, 'easeOutBounce'); else if ($(this).attr('href')=='#links') $('#nav-current-ico').animate({ 'top': '295px' }, 500, 'easeOutBounce'); }); // Handle F A Q $('.qa').click(function(){ var answer = $('.answer', this); if (answer.height()==0) { $('.answer').css({ 'max-height': '0', 'border-bottom-color': 'transparent' }, 300, 'easeInSine'); answer.css({ 'max-height': '300px', 'border-bottom-color': '#EEE' }, 500, 'easeOutSine'); } else { answer.css({ 'max-height': '0', 'border-bottom-color': 'transparent' }, 300, 'easeInSine'); } }); });