var url=window.location.toString();
var a=url.toLowerCase();
window.addEvent('domready', function()
{
	if ((a.indexOf('default.aspx')>-1) || (a.indexOf('healthyliving.aspx')>-1) || (a.indexOf('virtualhealthfair.aspx')>-1)) {
	    $('SwapPhoto').setProperty('src', 'images/img_photo01.jpg');
	}	
	else if ((a.indexOf('healthyheadlines.aspx')>-1) || (a.indexOf('biggestloserleague.aspx')>-1)) {
	    $('SwapPhoto').setProperty('src', 'images/img_photo04.jpg');
	}
	else if ((a.indexOf('healthchallenge.aspx')>-1) || (a.indexOf('jillianmichaels.aspx')>-1)) {
	    $('SwapPhoto').setProperty('src', 'images/img_photo05.jpg');
	}
	else if ((a.indexOf('intheknow.aspx')>-1) || (a.indexOf('willisrewards.aspx')>-1)) {
	    $('SwapPhoto').setProperty('src', 'images/img_photo03.jpg');
	}
	else {
	    $('SwapPhoto').setProperty('src', 'images/img_photo01.jpg');
	}
});