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

$(document).ready(function (){
  function AbrirCerrarFlotante(elBanner) {
    var animation = 500;

    // ABRIR
    if (elBanner.attr("abierto")=="0") {
      elBanner
        .attr("abierto","1")
        .animate({'width':'974px','height':'265px','marginLeft':'23px'},animation)
        .find('.EL-BOTON DIV').html("cerrar").andSelf();

    // CERRAR
    } else if (elBanner.attr("abierto")=="1") {
      elBanner
        .attr("abierto","0")
        .animate({'width':'904px','height':'26px','marginLeft':'53px'},animation)
        .find('.EL-BOTON DIV').html("abrir").andSelf();
    }
  };

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