$(document).ready(function() {
	
	/*$('#product-list div.clickable').click(function(e) {
		e.preventDefault();
		var href = $(this).find('a').attr('href');
		window.open(href);
	});*/
	
	$('#sub-menu ul li ul').each(function() {
		if(!$(this).parent().find('a').hasClass('active')) $(this).hide();
	});
	
	$('#bucket-laboratory div.slideshow').cycle({fx:'fade', timeout:2000});
	$('#bucket-industrial div.slideshow').cycle({fx:'fade', timeout:2500});
	
	$('div.scrollpane').jScrollPane();
	
	if($('#product-groups:not(".laboratory")').length > 0) $('#product-groups').masonry({itemSelector:'.column', singleMode:true});
	if($('#product-groups.laboratory').length > 0) {
		$('#product-groups div.product-group h2 a').each(function(index) {
			$(this).click(function(e) {
				e.preventDefault();
				$(this).parent().next().toggle('fast');
			});
		});
		
		$('#product-groups div.product-group ul').hide();
	}

});

