// Jquery functions

$(document).ready(function() {

// PRODUCT PAGE PROMO BEHAIVOUR ON HOVER
  $(".promo-produkty li a").hover(
    function() {
      $(this).parent().children('h2').addClass('over');
        },
    function() {
      $(this).parent().children('h2').removeClass('over');
        });

// SUBMIT BUTTON HOVER FOR IE 6
  $(".submit").hover(
    function() {
      $(this).addClass('over');
        },
    function() {
      $(this).removeClass('over');
        });

// FORM FOCUS FOR IE 6
  $(".txt").focus(
    function() {
      $(this).addClass('focus');
        });
  $(".txt").blur(
    function() {
      $(this).removeClass('focus');
        });

// HOME PROMO FAKE
  $('.promo-home li').click(
    function() {
      var target = $(this).children('a').attr('href');
      window.location.href = target;
  });



// MAP SCROLL
  $('.buttons a').click(
    function () {
        $.scrollTo('#map-canvas',800);
        return false;
      }
  );

});

