function viewAvisos() {
	
	$('.legalBtn').click(function() {
		
		$.modal('<iframe src="' + $(this).attr('href') + '" height="450" width="780" frameborder="0"  style="border:0; margin:10px 0 0 0;">', {
			closeHTML: "<a href='#'>Cerrar</a>",
			containerCss:{
				backgroundColor:"#fff",
				borderColor:"#fff",
				height:500,
				padding:0,
				width:810
			},
			overlayClose:true
		});
		$('#simplemodal-container').css('background','#fff');
		
		return false;
	});	
	
}

function video() {
	var v = document.createElement("video");
	if ( !v.play ) { 
      var params = {
        allowfullscreen: "true",
        allowscriptaccess: "always",
		wmode: "opaque"
      };
      var flashvars = {
        nameVideo: "spot.f4v",
        ancho: "462",
        alto: "260"
      };
      swfobject.embedSWF("swf/spot/player.swf", "spot", "462", "260", "9.0.0", "swf/expressInstall.swf", flashvars, params);
	 }
}

var initFlash = false;

function init() {
	return initFlash;
}

function mask() {
	$('#parentMask').click(function(){
		initFlash = true;
		
		$(this).fadeOut();
		
		$('#spot').trigger('play');
		$("#spot").bind("ended", function() {
			$('#parentMask').fadeIn(function(){1000, window.location.href = "index.php"; });
		});
		
	});
}


$(document).ready(function() {
	mask();
	video();
	viewAvisos();
});
