jQuery(document).ready(function() {
	jQuery('.popular .tabset a').click(function() {
		if(jQuery(this).parent().hasClass('active')) return;
		

		
		jQuery(this).parent().siblings().toggleClass('active', false);
		jQuery(this).parent().toggleClass('active', true);
		id = jQuery(this).attr('id').split('_htab_id').join('');
		
		jQuery('.popular .items-list').stop();
		prodList = jQuery('.popular .items-list[id=' + id + '_htab_productList] ');
		
		if(jQuery(this).data('htab_rendered')!==true)
		{
			prodList.show();
			prodList.find('.head').css('height', 'auto');
			initProductItems();
			prodList.hide();			
			jQuery(this).data('htab_rendered',true);
		}
		
		prodList.siblings('.items-list:visible').fadeTo(250, 0, function() {
			prodList.css('opacity', 0).show().fadeTo(300, 1);
			jQuery(this).hide();		
		});

		
	});
});

