$(document).ready(function(){
	var html = '<ul>';
	var blockCounter = 0;
	$(".product-page-blocks .product-page-block").each(function(){
		var blockId = $(this).attr("id") != '' ? $(this).attr("id") : 'product-page-block-' + blockCounter;
		$(this).attr("id", blockId);
		var title = $(this).find(".product-page-block-header:first").html();
		html = html + '<li><a href="#' + blockId + '">' + title + '</a></li>';
		blockCounter++;
	});
	html = html + '</ul>';
	$(".product-page-blocks .product-page-block .product-page-block-header").remove();
	$(".product-page-blocks").prepend(html).tabs();
});
