//
$(document).ready(function() {
   // do stuff when DOM is ready
   //home
   $("html").css("background-color", 'rgb(0,0,0)');
   flashembed("bg-flash", {src: "todo.swf", wmode: 'opaque'});
   //
   //
   $("div#INGLES").css("display", "none");
   //
   //
 });


function mostrar(idioma) {
	$("div#ESPANOL").css("display", "none");
	$("div#INGLES").css("display", "none");
	$("div#"+idioma).css("display", "block");
	}
