(function($){
	/* product detail tabs */
	$(".tab_nav li a").click(function () {
		$(".tab_nav li a").removeClass("active");
		$(this).addClass("active");
		$(".full_info .tab").hide();
		var content_show = $(this).attr("rel");
		$(".full_info .tab."+content_show).fadeIn();
	});

})(window.jQuery);

