$(document).ready(function(){
				$(".video").colorbox({width:"750px",height:"750px",iframe:true});
				$('#menu ul li').hover(function(){
				     $(this).children('div').stop(true,true).slideDown();
    			  },function(){
    				 $(this).children('div').slideUp();
    			  });
    			$(".tweet").tweet({
		            username: "TEDxAustin",
		            join_text: "auto",
		            avatar_size: 32,
		            count: 6,
		            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..."
		        });
		        $("#banner_slides").fadeTransition({pauseTime: 10000, transitionTime: 2000, ignore: "#introslide"});
$('.more').hide();
$('.read-more').click(function() {
$('.more').slideToggle(400);
$('.read-more').css('display','none');
return false;
});



$('.show-more').hide();
$('.more-reveal').click(function() {
var par = $(this).parents('.ted-more').attr("id");
$('#'+par+' .show-more').toggle();
$curr = $('#'+par+' .more-reveal').html();

if ($curr == "Read More"){
$('#'+par+' .more-reveal').html('Read Less');
}

if ($curr == "Read Less"){
$('#'+par+' .more-reveal').html('Read More');
}



return false;
});

						   
});


