// Move the "putter details" table from the content area
// to the sidebar-primary

$(document).ready(function(){
	
	if ($("#putter-details").length) {
		$("#putter-details").appendTo("#putter-details-wrapper");
	} else {
		$("#putter-details-wrapper").hide();
	};
})

