// JavaScript Document

function buildMenu () {

	var menuhtml = '';
	var clippedStyle = 'clippedImg';
	// run through the projects and build the html in the container.

	for (var i=0;i<devname.length;i++) {
	
		/*poweredByBlueprint = true; // force for testing
		if (poweredByBlueprint) {
			clippedStyle = "shortMenuImage";
		else {
			clippedMenuImage = "regularMenuImage";
		}*/
		
		
		
	
		menuhtml += "<div class='"+clippedStyle+"'>";
			//rather than calling JS directly, the a links call a URL variable ie /connectivity/#?devCode=hotelgeorgia. this keeps the window loaded on the right screen.
		//menuhtml += "<a onClick='javascript:location.reload();' href='#?devCode=" + devCodeindex(i) + "'>"; 
				
		menuhtml += "<a  href='javascript:selectProject(" + i + ");'>"; 
		menuhtml += "<img width=205 height=145 src='http://www.sothebysrealty.ca/graphics/devlogos/"+logoImageURL[i]+"' />";
		menuhtml += "</a>";
		menuhtml += "</div>";
	
	}
	//alert(menuhtml);
	
	return menuhtml;
	
	
}
