
swfobject.registerObject("myFlashContent", "8");

var arrDocument = new Array();

arrDocument['content1'] = 'http://www.teles.de/files/en/DS_TELES-Green-PBX.pdf';
arrDocument['content2'] = 'http://www.teles.de/files/en/DS_TELES-Green-PBX.pdf';
arrDocument['content3'] = 'http://www.teles.de/files/en/DS_TELES-Green-PBX.pdf';
arrDocument['content4'] = 'http://www.teles.de/files/en/DS_TELES-Green-PBX.pdf';

$(document).ready(function(){

  jQuery.ifixpng('./img/pixel.gif');
  jQuery('img').ifixpng();

  $("#green a").click(function() {
    $(".active").slideUp("normal", function(){
      $(this).removeClass("active");
    });
    $("#content" + this.id).slideDown("normal", function(){
      $(this).addClass("active");
    });
  });
  $(".close").click(function(){
    $(this.parentNode).slideUp("normal", function(){
      $(this).removeClass("active");
    });
  });

  $(".download").click(function(){window.open(arrDocument[this.parentNode.id]);});

  $("#red a").hover(
    function(){$("#" + this.id + "Content").show();},
    function(){$("#" + this.id + "Content").hide();}
   );
});