showShirt = function(shirt){
	if (document.layers)
	{
		document.layers['shirt'].src = 'images/loader.gif';
		document.layers['shirt'].display = 'block';
		document.layers['shirt'].src = 'images/shirt' + shirt + '.jpg';
	}
	else if (document.all)
	{
		document.all['imgShirt'].src = 'images/loader.gif';
		document.all['shirt'].style.display = 'block';
		document.all['imgShirt'].src = 'images/shirt' + shirt + '.jpg';
	}
	else if (document.getElementById)
	{
		document.getElementById('imgShirt').src = 'images/loader.gif';
		document.getElementById('shirt').style.display = 'block';
		document.getElementById('imgShirt').src = 'images/shirt' + shirt + '.jpg';
	}
}
hideShirt = function(){
	if (document.layers)
	{
		document.layers['shirt'].display = 'none';
		document.layers['shirt'].src = 'images/loader.gif';
	}
	else if (document.all)
	{
		document.all['shirt'].style.display = 'none';
		document.all['imgShirt'].src = 'images/loader.gif';
	}
	else if (document.getElementById)
	{
		document.getElementById('shirt').style.display = 'none';
		document.getElementById('imgShirt').src = 'images/loader.gif';
	}
}
