function inactive(obj, num)
{
	if(num!=active_page)
	{
	obj.style.backgroundImage = '';
	}
}

function active(obj, num)
{
	obj.style.backgroundImage = 'url(img_'+num+'.jpg)';
}


