$(document).ready(function(){
	$("#madre_suscripcion").click(function(){
		$("#formulario_tequilas").fadeIn("slow");
	});
});
/* inicio random banner principal */
this.randomtip = function(){

    var pause = 14000; // define the pause for each tip (in milliseconds)
    var length = $("#publicidad li").length;
    var temp = -1;     

    this.getRan = function(){
        // get the random number
        var ran = Math.floor(Math.random()*length) + 1;
        return ran;
    };
    this.show = function(){
        var ran = getRan();
        // to avoid repeating
        while (ran == temp){
            ran = getRan();
        };
        temp = ran;
        $("#publicidad li").slideUp("slow");  
        $("#publicidad li:nth-child(" + ran + ")").slideDown("slow");       
    };
   
    show(); setInterval(show,pause);
   
};

$(document).ready(function(){  
//    randomtip();
});