// FESTIVAL PROMOTIONS GLOBAL JAVASCRIPT FUNCTIONS
// http://festival.net
// Last updated: November 29, 2010

// TOGGLE CATEGORIES PANEL
$(document).ready(function() {
    $('#nav ul.menu li a#info').click(function(){
       $(this).toggleClass('active');
       $('div#nav').toggleClass('active');
        $('.infoSub').slideToggle(100);
	});		

// TOGGLE SKYCAST TRANSCRIPT
   // $('#main p.toggleThis a').click(function(){
    //   $('#transcriptCopy').slideToggle(200);
//	});	

	// External links open in new window automatically
	$("a[href^='http']").attr('target','_blank');

///////////////// INITIALIZE JQUERY.TWEET /////////////////

	$(".tweet").tweet({
		username: "FestivalPromo",
    	join_text: "auto",
    	avatar_size: 42,
    	count: 1,
    	auto_join_text_default: "we said,",
    	auto_join_text_ed: "we",
    	auto_join_text_ing: "we were",
    	auto_join_text_reply: "we replied to",
    	auto_join_text_url: "we were checking out",
    	loading_text: "loading tweets..."
    });


});  
