$(document).ready(function () {

  //Tło pod firmami
  tmp = new Image();
  tmp.src= 'szablony/intro_pl/pliki/obrazki/bg-main-box1.gif';

  $("a.mnu_hover,a.menu_hover,a.hover").hover(
    function () {
      $(this).find("img").attr("src", function() { return this.src.replace( /\.(gif|jpg|jpeg|png)$/gi , '1.$1') } );
    },
    function () {
      $(this).find("img").attr("src", function() { return this.src.replace( /1\.(gif|jpg|jpeg|png)$/gi , '.$1') } );
    }
  );
  
  $("div.firma-box").hover(
    function () {
      $(this).css({"background":"url(szablony/intro_pl/pliki/obrazki/bg-main-box1.gif) no-repeat 0 0", "border-right":"1px solid #d21920", "cursor":"pointer"});
      $(this).find("h1").css("color","#FFF");
    },
    function () {
      $(this).css({"background":"url(szablony/intro_pl/pliki/obrazki/bg-main-box.gif) no-repeat 0 0", "border-right":"1px solid #e9e9e9", "cursor":"default"});
      $(this).find("h1").css("color","#617cab");
    }
  );
  $("div.firma-box").click(function () {
    href = $(this).find("a:first").attr("href");
    if(href) location.href = href;
  });
});

