jQuery(document).ready(function() {
	jQuery('#slider').nivoSlider({
		effect: 'fade',
		pauseTime: 5000
	});
	
	jQuery(".sdc-container").mouseenter(function() {
		jQuery(this).find(".sdc").stop(true, true).slideDown(150, function () {});
	});
	jQuery(".sdc-container").mouseleave(function() {
		jQuery(this).find(".sdc").stop(true, true).fadeOut(0, function() {});
	});
	jQuery(".product-collateral .collateral-box .kereviews ol li:nth-child(odd)").css('background', '#666');
});
