ppl.product = {

	init: function() {
	
		$(".pplShop-expand-element").click(function() {
			$(this).toggleClass('pplShop-expanded');
			if($(this).next().is(':hidden')) {
				$(this).next().slideDown();
			} else {
				$(this).next().slideUp();
			}
		}).next().hide();
		
		$("#tabs").tabs();
		
		$('#pplShop-recommendation-items').jcarousel({
			scroll: 4
		});
	
	}

}

jQuery(document).ready(function() {
    ppl.product.init();
});