(function($) {
var Sp = 300 ;
	$(function() {
		var btnIcon = $("a.aniHovBtn");
		btnIcon.each(function(){
					var btnIconIdA = "#" + $(this).attr("id")+"a";
					var btnIconIdB = "#" +  $(this).attr("id")+"b";
			$(this).hover(
				function(){
					var sW = $(window).width(); 
					var sH = $(window).height() ; 
					$(btnIconIdA).stop().css({"left":-sW / 2 , "top" :200 }).animate({"top" : 140 ,"left":sW / 2 - 520 }, Sp); 
					$(btnIconIdB).stop().css({"left":-sW,"top" :110 }).animate({"top" : 110 ,"left":sW / 2 - 165 }, Sp); 
				},
				function(){
					var sW = $(window).width();
					var sH = $(window).height() ; 
					$(btnIconIdA).stop().animate({"top" : 200 ,"left":-sW / 2 }, Sp);
					$(btnIconIdB).stop().animate({"top" : 110 ,"left":-sW }, Sp);
				}
			);
		});
	});

})(jQuery);


(function($) {
	$(function() {
		$('a.youtube').colorbox({ iframe: true, width: 640, height: 480 }); 
	});

})(jQuery);


(function($) {
	$(function() {
		$('a.googlemap').colorbox({ iframe: true, width: 640, height: 480 }); 
	});

})(jQuery);

(function($) {
	$(function() {
		$('a.ticket').colorbox({ iframe: true, width: 640, height: 480 }); 
	});

})(jQuery);


