$(document).ready(function() {

$('#tabs li a').click(function() {

	$('#tabs li a').removeClass('active-tab');
	$(this).addClass('active-tab');
	
	$('#product-tab-details div').hide();
	$('#'+$(this).attr('rel')).show();
	
	return false;
});


$(".expandable_list").hide();

$(".expandable_header").click(function(){

	$(this).next().toggle();
	$(this).toggleClass('expandable_header_active');

});

});