$(function () {$("#attractions-map .tip").tooltip({ offset: [10, 2], effect: 'slide' }).dynamic({ bottom: { direction: 'down', bounce: true} }).overlay();$("#main-billboard a img").tooltip({ offset: [40, 2], effect: 'slide' }).dynamic({ bottom: { direction: 'down', bounce: true} }).overlay();$("ul.tabs").tabs("div.panes > div");$(".media-item a").overlay({onLoad: function () {var mediaHTML = "";if (this.getTrigger().attr("class") == "photo") {mediaHTML = "<div class='details'><h3>" + this.getTrigger().find("img").attr("alt") + "</h3></div>" + "<div class='images'>" + "<img src='" + this.getTrigger().attr("href") + "' alt='" + this.getTrigger().find("img").attr("alt") + "' /></div><div class='clear'>&nbsp;</div>";}else {var youtubeID = this.getTrigger().find("img").attr("rel");mediaHTML = "<div class='details'><h3>" + this.getTrigger().find("img").attr("alt") + "</h3></div><div class='images'><iframe title='YouTube video player' width='500' height='333' src='http://www.youtube.com/embed/" + youtubeID + "' frameborder='0' allowfullscreen='true'></iframe>"; "</div><div class='clear'>&nbsp;</div>";}$("#media-player .media-content").html(mediaHTML);},onClose: function () { $("#media-player .media-content").html(""); }});})
