
	
	$(document).ready(function() { 
 
    
// initialize tooltip
$("form.adult_tkt[title], form.child_tkt[title], a.dude[title]").tooltip({

   // tweak the position
   offset: [10, 80],

   // use the "slide" effect
   effect: 'slide',
   opacity: 1
   
});
 
    
   // ToolTip - End
     
   // New Window Script - START
       
  
      $('a.new-window').click(function(){
  
      window.open(this.href);
   
      return false;
  
      });
   

   // New Window Script - END
   
   
   // Font Expand - START
		
	$(".footer-item a").hover(
			function() {
				$(this).stop().animate({color:"#5a7d8f"}, 500);
			},
			function(){
				$(this).stop().animate({color: "#fff"}, 500);
		});
		
		
	
    // Font Expand - END
    
    
    // Scroll To Top - Start
    $('.backtotop').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
    });


    
/* Fancy Box Settings for Single Image */
  
$("a.one_image").fancybox({
 'zoomSpeedIn'  :       300,
  'zoomSpeedOut':       300,
  'overlayShow': false, 
  	'titlePosition'	:	'over',
	'onComplete'	:	function() {
		$("#fancybox-wrap").hover(function() {
			$("#fancybox-title").show();
		}, function() {
			$("#fancybox-title").hide();
		});
	}


});
    
  
/* Fancy Box Settings for iFrame */

	$("#getmap").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'overlayShow'       : false,
        'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe'
	});
  
});
