$(function() {
  var e = document.createElement('script');
  e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
  e.async = true;
  document.getElementById('fb-root').appendChild(e);
});

function show(id){
document.getElementById(id).style.visibility="visible";
}
function hide(id){
document.getElementById(id).style.visibility="hidden";
}

function toggleColor(id){
if(id=="dsNewsRadio")
  {
   document.getElementById('dsNews').className="spaceNews";
   document.getElementById('fanNews').className="fanTweets";
  }
if(id=="fanNewsRadio")
  {
   document.getElementById('fanNews').className="spaceNews";
   document.getElementById('dsNews').className="fanTweets";
  }
}

var fbComment=0;


$(document).ready(function(){
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#dropDownLayer").mouseover(function(){
		$(this).stop().animate({height:'170px'});
	});
	$("#gameNav").mouseover(function(){
		$(this).stop().animate({height:121+8+15});
	});
	
	//When mouse is removed
	$("#dropDownLayer").mouseout(function(){
		$(this).stop().animate({height:'25px'});
	});
	$("#gameNav").mouseout(function(){
		$(this).stop().animate({height:'15px'});
	});
	
});


var typer1;
var typer2;
var typer3;

// When the DOM is ready, initialize the scripts.
jQuery(function( $ ){
	// Get a reference to the container.
	var container = $( "#container" );
	// Bind the link to toggle the slide.
	$( "#arrowUp DIV" ).click(function( event ){
		// Prevent the default event.
		event.preventDefault();
		// Show - slide down.
		container.slideDown( 400 );
		
		//track the page.
		setTimeout(function(){
			customPageNameAndReset('FACEBOOKEXPANDED');
		}, 1);
		
		document.getElementById('singleCommentSection').style.display="none";
		document.getElementById('arrowUp').style.display="none";
		FBMConfig.wallindex = 0;
		$('#fbwallcontent0').html(FBManager.getWallPost(FBMConfig.wallindex + 0 ,$('#fblikes')[0],$('#streamImg0')[0],$('#fbtime0')[0],$('#fbshare0')[0],$('#comlink0')[0],false));
		$('#fbwallcontent1').html(FBManager.getWallPost(FBMConfig.wallindex + 1 ,$('#fblikes')[0],$('#streamImg1')[0],$('#fbtime1')[0],$('#fbshare1')[0],$('#comlink1')[0],false));
		$('#fbwallcontent2').html(FBManager.getWallPost(FBMConfig.wallindex + 2 ,$('#fblikes')[0],$('#streamImg2')[0],$('#fbtime2')[0],$('#fbshare2')[0],$('#comlink2')[0],false));
	});


	$( "#action2" ).click(function( event ){
		// Prevent the default event.
		event.preventDefault();
		// Toggle the slide based on its current
		// visibility.
		// Hide - slide up.
		container.slideUp( 400 );
		$('#singleCommentSection').show();
		$('#arrowUp').show();

		//Check the page.
		var pagetag;
		
		if(beatManager.currentBeatData && beatManager.currentBeatData.omnitag){
			pagetag = beatManager.currentBeatData.omnitag;
		}else{
			pagetag = "BEATSLOADINGHOME";
		}
		
		//track the page.
		setTimeout(function(){
			customPageNameAndReset(pagetag);
		}, 1);
	});
});

