jQuery(function( $ ){
	$("a.anchor-link").each(function(){
	/*	var href = this.href;
		var href = href.split("#");
		if(href.length>1){
			console.log(href[1]);
			this.href = '#'+href[1];
		}
*/
		/*var href = $(this).attr('href');
		console.log('href',this.href);
		var href = href.split("#");
		$(this).attr("href",href[1]);*/
	});
});
