function doLayerSwap(strLayerID){
	$('#mainprodimg').children().css('display','none');
	$('#'+strLayerID).css('display','block');
	$('#prodimgnav a').removeClass('selected');
	$('#'+strLayerID+'link').addClass('selected');

	drawCloseUpLink(strLayerID);
}

function initLayerNav(){
	var strLayerNav='<span class="label">Image:</span>';
	var intCount=0;
	var strSiteLoc=window.location.href;

	$('.imgcontainer').each(function(i){
		intCount=intCount+1
		if(intCount==1){
			strClass=' class="selected"';
		}else{
			strClass='';
		}
		strLayerNav+=' <a href="'+strSiteLoc+'" onclick="doLayerSwap(\'img'+intCount+'\');return false;"'+strClass+' id="img'+intCount+'link">'+intCount+'</a>';
	});

	$('#prodimgnav').html('<span class="imglist">'+strLayerNav+'</span>');
	drawCloseUpLink('img1');
}

function drawCloseUpLink(strLayerID){
	$('#prodimgnav a.closeup').replaceWith('');

	var strHref=$('#'+strLayerID+' a.thickbox').attr('href');

	if(strHref){
		$('#prodimgnav').append('<a href="'+strHref+'" class="closeup thickbox">Close Up</a>');
		tb_init('a.closeup');
	}
}
