$(document).ready(function() {

	$(".tab_content").hide();
	$("#product_details li:first").addClass("active").show();
	$(".tab_content:first").show();

	$("#product_details li").click(function() {

		$("#product_details li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide();

		var activeTab = $(this).find("a").attr("href");
		$(activeTab).show();
		return false;
	});

});
