var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
var isIE7 = /msie|MSIE 7/.test(navigator.userAgent);

$(function(){

  $('.nutcase, .nutcase-hover').click(function(){
    $(this).blur();
    //return false;
  });

  $('.nutcase').hover(function(){
    if(isIE7==true){
      $('.nutcase-hover').show();
    }else{
      $('.nutcase-hover').fadeIn(200);
    }
  },function(){});
  
  $('.nutcase-hover').hover(function(){
    },function(){
      if(isIE7==true){
        $(this).hide();
      }else{
        $(this).fadeOut(100);
      }
  });

  if(isIE6==true){
    $('.nutcase').pngFix();
    $('.logo').pngFix();
    $('.menu-in').ifixpng();
    $('.toofresh').ifixpng();
    $('.graf, .graf2, .graf3').ifixpng();
    $('.cap-skvele').ifixpng();
    $('a.thickbox').attr('target','_blank').removeClass('thickbox').bind('click',function() {window.open(this.href);});

  }

});

