// $cmignore
function showImage(index)
			{
				// Swap the image
				var image = document.getElementById('screenShot');
				image.src = '/images/iphone/screen_shot_' + index + '.jpg';

				// Swap the dots
				for(var i = 1; i <= 6; i++)
				{
					if(i == index)
					{
						document.getElementById('dot' + i).src = '/images/colorsnap/dot_selected.png';
					}
					else
					{
						document.getElementById('dot' + i).src = '/images/colorsnap/dot_deselected.png';
					}
				}
				// Call ifixpng
				$('img[src$=.png]').ifixpng(); 
				//Hack to get IE6 to work with the iphone image / dot swap out
				$('#dots img').css({'height' : '10px', 'width' : '10px', 'display' : 'inline'}); 
			}
// $/cmignore


