// http://jquery.thewikies.com/swfobject/examples

function cerrarBanner() {
  var unBanner = $('#BANNER-FLOTANTE .EL-BANNER');
  if (unBanner.attr("unavez")=="0" && unBanner.attr("abierto")=="1") unBanner.find('.EL-BOTON').click();
};

$(document).ready(function (){

  function AbrirCerrarFlotante(elBanner) {
    var animation = 50;

    // ABRIR
    if (elBanner.attr("abierto")=="0") {
      elBanner.find('.FLOTANTE').css({'display':'none'});
      elBanner
        .attr("abierto","1")
        .css({'position':'Absolute','zIndex':'100'})
        .animate({'width':'618px','height':'300px','marginTop':'-100px','marginLeft':'-5px'},animation,function(){elBanner.find('.FLOTANTE').css({'display':'block'})})
        .find('.EL-BOTON DIV').html("cerrar").andSelf()
        ;

    // CERRAR
    } else if (elBanner.attr("abierto")=="1") {
      //elBanner.find('.FLOTANTE').css({'display':'none'});
      elBanner
        .attr("abierto","0").attr("unavez","1")
        .animate({'width':'415px','height':'40px','marginTop':'0px','marginLeft':'0px'},animation,function(){elBanner.css({'position':'','zIndex':''}).find('.FLOTANTE').css({'display':'block'})})
        .find('.EL-BOTON DIV').html("abrir").andSelf()
        ;
    }
  };

  $('#BANNER-FLOTANTE .EL-BANNER').each(function(){
    var unBanner = $(this);
    $(this).attr("abierto","0").attr("unavez","0").find('.EL-BOTON').css({'display':'block'}).click(function(){AbrirCerrarFlotante(unBanner);}).andSelf();
    if ($(this).attr("abrir")=="1") {
      setTimeout("cerrarBanner();",20000);
      AbrirCerrarFlotante(unBanner);
    }
  })
  ;
});
