/**
 * @author Tomasz Czypicki (www.cybernoxa.pl)
 */

$(function() {
	
	/**///co drugi rząd w tabeli dla IE lte 8
	if ($.browser.msie && $.browser.version < 9) {
		$("table tbody tr:odd").addClass("odd");
		$(".steps li:first-child, .steps li:nth-child(3n+4)").addClass("nth-child");
	}

	/**///piętnuję operę
	if ($.browser.opera) {
		$("body").addClass("opera");
	}

	/**///obsługa FAQ
	$("#faq > li div").addClass("hide");//wstępne ukrycie na starcie
	$("#faq > li h3 a").click(function(){
		$(this).parent("h3").next("div").toggleClass("hide");
	});	
	
	/**///colorbox
	$("a[rel='gallery'], a.thumbnail").colorbox({opacity:0.65});
	
});

