function isIE() {
      if(navigator.userAgent.match(/MSIE 7/)) {
          return true;
          }
          if(navigator.userAgent.match(/MSIE 6/)) {
          return true;
          }
      return false;
    }

$(document).ready(function() {

    // If the browser is IE,
    if(isIE()) {
      $(function() {
      	var zIndexNumber = 1000;
      	$('div').each(function() {
      		$(this).css('zIndex', zIndexNumber);
      		zIndexNumber -= 10;
      	});
      });
    }
              
    var zobrazit = true;
    $('a#menuprihlaseni').click(function() {
      if (zobrazit) {
        $('#showlogin').fadeIn();
        zobrazit = false;
      } else {
        $('#showlogin').fadeOut();
        zobrazit = true;
      }
    });
                                              

    
});

