$(document).ready(function() {
	
	$('.vectorlinks .tabs a').click(function() {
		$(".tabs a").removeClass("current");
		$(this).addClass("current");
		var thisID = $(this).attr("id");
		var Obj = ".tabcontent ." + thisID;
		$(".tabcontent>div").hide();
		$(Obj).show();
				
	});
	
	//move share this button
	//$('#share_this').append($('#sharethis_0'));
	
	
});
