 /* Tooltip */
 function tooltipBox(image, elementId){
   if(document.getElementById(elementId).style.display=="none") {
     image.src = '/resources/graphics/tooltip_close.gif';
     document.getElementById(elementId).style.display="block";
   }else {
     image.src = '/resources/graphics/tooltip_open.gif';
     document.getElementById(elementId).style.display="none";
   }
 }
 
 /* hr Tabs */
 function hrTabBox(image, elementId){
   if(document.getElementById(elementId).style.display=="none") {
     image.src = '/resources/graphics/bt_hrTab_close.gif';
     document.getElementById(elementId).style.display="block";
   }else {
     image.src = '/resources/graphics/bt_hrTab_open.gif';
     document.getElementById(elementId).style.display="none";
   }
 }


//--> ActionBox
  //Funktion macht actionBox
  function actionBoxShow() {
    var height = $(document).height();
    $('.overlay').fadeTo("slow", 0.33);
    $('.overlay').css({'height' : height});
    $('.actionBox').center();
    $('.actionBox').css({'z-index' : '1000000'});
    $('.actionBox').fadeIn();

  }
  
  //Funktion schlißt actionBox
  function actionBoxHide() {
    $('.actionBox').fadeOut();
    $('.overlay').fadeOut();

  }
  
$(document).ready(function() {
  //ActionBox ausblenden (Abrechen-Button)
  $('a[rel*=ABcancel]').click(function() {
    actionBoxHide();
  });
});
//<-- ActionBox

//--> MessageBox
$(document).ready(function() {
  //ActionBox ausblenden (Abrechen-Button)
  $('.messageBoxClose').click(function() {
    $('.messageBox').fadeOut('slow');
  });
});
//<-- MessageBox

