rules_mostrar_video={
	evento:function(){
		$("a.mostrar_video").bind("click",rules_mostrar_video.ejecutar);
	},
	before:function(){
		$().pre_loading("#modal",img_cargando,0.1,"modal");	
	},
	ejecutar:function(){
		//var multimedia="multimedia="+this.href;
		var multimedia="multimedia="+$(this).attr("href");
    fin=function(html){
				$("#modal").animate({opacity:"toggle"},"fast",function(){
						$("div#modal").html(html).popUp();
						$().post_loading("#modal",1);
						$("div#modal").popUp();
				});
		}
    $.ajax({url:"/batalla-chicas/video.html",data:multimedia,beforeSend:rules_mostrar_video.before,success:fin});
		return false;
	}
}
$(document).ready(rules_mostrar_video.evento);
