function $(objid){
	return document.getElementById(objid);
}
//nav
function bigimg(obj)
{
	//alert(obj.id.length);
	var objnum = obj.id.substring(1, obj.id.length);
	//alert(objnum)
	for(var i = 1; i <= 24; i ++)
	{
		var bigImage = $("uc" + i);

		if ( bigImage ) {
			if(objnum == i)
			{
				bigImage.style.display = "block";
			}
			else
			{	
				bigImage.style.display = "none";
			}
		}
	}
}
function bigimg1(obj)
{
	//alert(obj.id.length);
	var objnum = obj.id.substring(1, obj.id.length);
	//alert(objnum)
	for(var i = 1; i <= 24; i ++)
	{
		if(objnum == i)
		{	
			$("uc" + i).style.display = "none";
		}
	}
}


