/* Get Nelly Tweets$(document).ready(function() {            // JUST TO DISPLAY ARTIST TWEETS            var newArtist = IGA.twitter();            newArtist.setTemplateUrl('#Tweet_Container_Artist', '/_global/templates/_apps/twitter/tweets-artist.htm');            newArtist.getArtistTweets('NellyFurtado', 3, initLinks);   });    function initLinks() {            try {                var twitter_paragraph = $(".s_tweets .s_copy");                twitter_paragraph.each(function() {                    var $this = $(this);                    $this.attr("innerHTML", linkify($this.attr("innerHTML")));                });                $(".s_tweets .s_copy").find('a').each(function() {                    $(this).attr('target', '_blank');                });            }            catch (e) {                return false;            }    };    function linkify(s) {        return s.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/g, function(m) {            return m.link(m);        }).replace(/@[\S]+/g, function(m) {             return '<a class="t_user" href="http://twitter.com/' + m.substr(1) + '" >' + m + '</a>';        });    }*/$(function(){    Shadowbox.init({         handleOversize:     "resize",    	 displayNav:         false,         handleUnsupported:  "remove",         autoplayMovies:     false    });	function openMailingList() {        Shadowbox.open({                player:     'iframe',                title:      'Join Nelly&#8217;s Mailing List',				content:    'https://pages.email.interscope.com/nellyfurtado/emailsignup/',                height:     400,                width:      600        });	}	//openMailingList();		$("#btn-mailinglist").click(function(e) {		openMailingList();		e.preventDefault();	});});
