var navigation = {

   remixBoxLocated: false,
   remixbox: null,

   initRemixes: function() {
      // get the box
	  if(navigation.remixBoxLocated == true) return true;

	  navigation.remixbox = $('remix-vidcontainer');
	  if(navigation.remixbox == null) {
		alert("Can't locate video container!");
		return false;
	  }
	  navigation.remixBoxLocated = true;
	  toggleLayer(navigation.remixbox); //show it
	  return true;
   },
   
   loadRemix : function(url) {
		if(navigation.initRemixes() == false || url == null) return;
		navigation.remixbox.innerHTML = '<object width="425" height="350"><param name="movie" value="' + url + '"></param><param name="wmode" value="transparent"></param><embed src="' + url + '&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>';

   }
	
}
