$(document).ready(function() {
   $("#menu2").css("display", "none");

   $("#menu a").each(function() {
      
        $(this).mouseover(function(){
          $("#menu2").css("display", "none");
        });
     
   });

   $("#company").mouseover(function(){
      $("#menu2").css("display", "block");
   });

   $("a[rel*=lightbox]").lightBox();
   $("a[rel*=fancybox]").fancybox({
                                    frameWidth: 805,
                                    frameHeight: 680
                                  });

   $("#el_menu").hide();
   setInterval("show()",400);

   
 });

 function show()
 {
  $("#el_menu").show("slow");
 }
var x=1;
 function startShow()
 {
  if (x%2 == 0)
  {
    $("#img_txt_top span").fadeOut(100);
  } else
  {
    $("#img_txt_top span").fadeIn(100);
  }   
   x++;
 }

setInterval("startShow();", 600);
