var browser=navigator.appName;

if(browser=='Microsoft Internet Explorer')
{
    document.write('<style>#left-menu-box a { width: 213px; }</style>');
}

$(document).ready(function() {

  /**
   *  Open lightbox image
   *
   */
  $(function()
  {
      $('a.lightbox').lightBox();
  });
  $(function()
  {
      $('a.lightbox1').lightBox();
  });
  $(function()
  {
      $('a.lightbox2').lightBox();
  });
  
  /**
   *  Create target="blank"
   *
   */
  $('.t-blank').click(function()
  {
      $(this).attr("target","blank");
  });
  
  /**
   *  Contact form default text
   *
   */
  $('#ContactFormularText').blur(function()
  {
      ContactFormularDefaultText(2);
  });
  
  /**
   *  Contact form default text
   *
   */
  $('#ContactFormularText').focus(function()
  {
      ContactFormularDefaultText(1);
  });

  $('h1').html($('h1').html() + '<img src="'+ROOT_REWRITE+'_styles/images/h1.gif" />');
  
  
  $("a").mouseout(function()
  {
      $(this).blur();
  });
  
});
