$(document).ready( function() {
	$("a[rel='lightbox1']").colorbox();								
	/**///nadaję klasę body, mówiącą, że jest obsługa js
	$("body").addClass("js");

	/* !!! ogólnie muszę zrobić dobre browser sniffing !!! */

	/**///co drugi rząd w tabeli dla IE lte 8 oraz inne selektory css3
	if ($.browser.msie && $.browser.version < 9) {
		$("table tbody tr:odd").addClass("odd");
		$("#breadcrumbs a:last-child").addClass("last-child");
		$("#products-similar li:first-child, #products-similar li:nth-child(3n+4)").addClass("nth-child");
	}
	
	/**///piętnuję operę
	if ($.browser.opera) {
		$("body").addClass("opera");
	}
	
	/**///piętnuję chrome
	var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
	if (is_chrome) {
		$("body").addClass("google-chrome");
	}
	
	/**///slideshow na głównej
	$('#slideshow').cycle({ 
	  fx: 'fade', 
	  speed: 3000, 
	  timeout: 6000, 
	  pause: 1,
      prev: '#prev-slide', 
      next: '#next-slide'
	});
	
	/*
	//flash na głownej
	$("#animation-home").flash({
		swf: "flash/slideshow.swf",
		width: 979,
		height: 320,
		hasVersion: 9,
		wmode: 'transparent'
	});*/
});

