function doLayerSwap(strLayerID){
	$('#productdetail #imgswap').children().not('#imgnav').css('display','none');
	$('#'+strLayerID).css('display','block');
	$('#imgnav a').removeClass('selected');
	$('#'+strLayerID+'link').addClass('selected');

	drawCloseUpLink(strLayerID);
}

function initLayerNav(){
	var strLayerNav='';
	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>';
	});

	if(intCount>1){
		$('#imgnav').html('<span class="imglist">'+strLayerNav+'</span>');
	}else{
		$('#imgnav').html('');
	}
	drawCloseUpLink('img1');
}

function drawCloseUpLink(strLayerID){
	$('#imgnav a.closeup').replaceWith('');

	var strHref=$('#'+strLayerID+' a.shadowbox').attr('href');

	if(strHref){
		$('#imgnav').append('<a href="'+strHref+'" class="closeup shadowbox">Close Up</a>');
		Shadowbox.setup("a.shadowbox", {
		});
	}
}
