/**
 * @author Matt
 */

// display the logo for a site if it has one
function showLogo(websiteID, logoFile){
	
	var logo = document.getElementById('logo'+websiteID);
	var logoPath = '/_sites/'+websiteID+'/images/logo/'+logoFile;

	// display the logo for the appropriate site
	if (logo && logo.src.indexOf('/_sites/') == -1)
	{
		logo.src = logoPath;
	}
}
