/* + + + + + + + + + + + + + + + + + + + + + + + + + +
+  EMBEBER FLASH DE YOUTUBE CON EL API DE SWFOBJECT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + */ 
  var ytplayer1 = null;
  var ytplayer2 = null;
  var ytplayer3 = null;

		var params = { allowScriptAccess: "always", wmode: "opaque" };
		var attsHome = { id: "homePlayer" };
		var attsGana = { id: "ganaPlayer" };
		var attsAnunciate = { id: "anunciatePlayer" };
		swfobject.embedSWF("http://www.youtube.com/v/"+vInicio+"?enablejsapi=1&playerapiid=ytplayer1&version=3", 
						   "videoHome", vInicioAncho, vInicioAlto, "8", null, null, params, attsHome);
		swfobject.embedSWF("http://www.youtube.com/v/"+vGana+"?enablejsapi=1&playerapiid=ytplayer2&version=3", 
						   "videoGana", vGanaAncho, vGanaAlto, "8", null, null, params, attsGana);
		swfobject.embedSWF("http://www.youtube.com/v/"+vAnunciate+"?enablejsapi=1&playerapiid=ytplaye3&version=3", 
						   "videoAnunciate", vAnunciateAncho, vAnunciateAlto, "8", null, null, params, attsAnunciate);
		function onYouTubePlayerReady(playerId) {
      		ytplayer1 = document.getElementById("homePlayer");
      		ytplayer2 = document.getElementById("ganaPlayer");
      		ytplayer3 = document.getElementById("anunciatePlayer");
    	}
/* + + + + + + + + + + + + + + + + + + + + + + + + + +
+  DETENER LOS VIDEOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + */ 
		function detenerVideos (){
			ytplayer1.pauseVideo();
			ytplayer2.pauseVideo();
			ytplayer3.pauseVideo();
		}
    $(document).ready(
        function(){
            /*$(".uneteRed10").click(function(){
				detenerVideos();
			})*/
            $(".contactanos").click(function(){
				detenerVideos();
			})
            $("#helpRed10").click(function(){
				detenerVideos();
			})
        }
    )
/* + + + + + + + + + + + + + + + + + + + + + + + + + +
+  1. MOVER CARRUSEL
+  2. MOVER DIVS DE FACEBOOK Y RED10
+  3. DESLIZAR DIVS DESDE EL MENÚ LATERAL DERECHO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 

	$(document).ready(function() {
		$('#clientes').jcarousel();
		$('#smsDesdered10').css('display','none');
		$('#smsDesdeFacebook').css('display','none');
		$('.smsDesdered10').click(function(){
			if ($('#smsDesdered10').is(':hidden')){
				$('#smsDesdered10').slideDown('slow');
			} else {
				$('#smsDesdered10').slideUp('fast');
			}
		});
		$('.smsDesdeFacebook').click(function(){
			if ($('#smsDesdeFacebook').is(':hidden')){
				$('#smsDesdeFacebook').slideDown('slow');
			} else {
				$('#smsDesdeFacebook').slideUp('fast');
			}
		});
		$(".wrapper").click(function(){
			$("#wrapper").slideto({highlight: false});	
		});
		$(".enviaSMS").click(function(){
			$("#enviaSMS").slideto({highlight: false});	
		});
		$("#enviaSMS3").click(function(){
			$("#enviaSMS").slideto({highlight: false});	
		});
		$(".recargaCelular").click(function(){
			$("#recargaCelular").slideto({highlight: false});	
		});
		$(".ganaConNosotros").click(function(){
			$("#ganaConNosotros").slideto({highlight: false});	
		});
		$(".anunciate").click(function(){
			$("#anunciate").slideto({highlight: false});	
		});
	});

