function isIE() {
	return (document.all && document.getElementById && !window.opera) ? true : false;
}

// skryvani formu pro novy komentar
$(document).ready(function() {
	var regex = /re=[0-9]+/;
	if ( regex.test(window.location.search) ) {
		return; // reakce na nejaky komentar
	}

	var area = $("#product-comments");
	if ( area.length ) {
		area = area.get(0);
		var switchers = $("a.switcher", area);
		var form = $("div.inner-area", area).get(0);
		$(switchers).each(function() { $(this).css("display", "inline"); } );
		$(form).css("display", "none");

		switchClick = function() {
			if ( $($(switchers).get(0)).css("display") == "inline" ) {
				// zobrazeni formu a schovani tlacitka
				$(form).css("display", "block");
				$(switchers).each(function() { $(this).css("display", "none"); } );
			}
		};

		$(switchers).each(function() { $(this).click(switchClick); } );
	}
 });