function iPhoneCurrSection() {
	var currBod = $$('body')[0].readAttribute('class');
	$$('#wrapper ul.globalNav li img.iPhoneContent').each(function(img) {
		if (img.up(1).readAttribute('class') == currBod) {
			var thisSrc = img.readAttribute('src').split('off')[0] + 'on.png';
			var thisAlt = img.readAttribute('alt');
			var thisWidth = img.readAttribute('width');
			var thisHeight = img.readAttribute('height');
			img.up(1).insert('<img src="' + thisSrc + '" alt="' + thisAlt + '" width="' + thisWidth + '" height="' + thisHeight + '" class="iPhoneContent" />');
			img.up().remove();
		}
	});
}