function artistMenuSelect(id)
{	
	artistMenuReSet();
	document.getElementById(id).className="current";
	alert(document.getElementById(id).className);
	//alert(id);
	//artistMenuReSet();
	
}

function artistMenuReSet()
{
	var totalId=5;
	for(var i=1;i<=5;i++)	
	{
		document.getElementById(i).className="page_item page-item-6";		
	}
}
