// All scripts at the bottom of the page should be added here


/*---------------------------------------------------------------------------------------------------------------------------
* Function: Banner Slideshow
* Description: uses Jquery Cycle Plugin
---------------------------------------------------------------------------------------------------------------------------*/
$('#background-full') 
.cycle({ 
  fx:     'fade', 
  speed:  'slow', 
  delay:	4000
	//fit: 1,
	//width: 1920
  //pager:  '#banner-pager' 
});

$(document).ready(function(){
	$(".subscribe").colorbox({width:"637px",height:"740px", scrolling:false, iframe:true});
	$(".enquire").colorbox({width:"637px",height:"840px",scrolling:false, iframe:true});
	$(".enquire").colorbox({onClosed:function(){parent.location.reload();} } );
	 $(".subscribe").colorbox({onClosed:function(){parent.location.reload();} } );
});


$(document).ready(function() {
	
	$('#enq-sub').hide();

	$('a#main-nav-availability').each(function(){
										  
		$(this).parent().hoverIntent(function() {
			$(this).addClass('on');
			$(this).find("#enq-sub").slideDown('fast');
	 },
	 function(){
		$(this).find("#enq-sub").slideUp('fast'); 
		$(this).removeClass('on');
	  }
	  );
 	 });
	
});
