// JavaScript Document

<!--

// randomizer

// determine which content

var textBrick = new Array();

textBrick[0] = new Array('You’re never too old for a playroom.', 'Introducing the Q Room, your recreational home within a home featuring a private bowling alley, movie screening room, putting green, lounge and fully-equipped fitness center right inside the building—all for 565 Quincy homeowners. <a href = "features.php">Click here to find out more.</a>');


textBrick[1] = new Array('Quality, Quaint, Quintastic!', 'New construction condos and lofts in the city from the $200\'\s to the $400\'\s -- so fabulous that we\'\ re sure to start a whole new lingo. <a href = "features.php">Click here</a> to view a list of what’s going to be included in your next big purchase.');

textBrick[2] = new Array('Your style now matches your surroundings.', 'Located just steps from Union Station and the Chicago River, you\'\ll be surrounded by all of the restaurants, shopping, entertainment and conveniences that you can handle. <br />565 Quincy is sure to offer life without a dull moment. <a href="neighborhood.php">Click here</a> to get acquainted with all that your neighborhood has to offer.');

textBrick[3] = new Array('Floorplans that will please those with the most discriminating tastes.', 'Our 1-2 bedroom new construction lofts and condos feature a spectacular blend of old and new, with a beautiful glass and steel structure atop a vintage brick and concrete building. With 18 renovated <a href = "floorplans.php">loft floorplan</a> options and 17 new construction <a href = "floorplans.php">condo floorplan options</a>, you\'\ re sure to find a space that meets your every desire.');

textBrick[4] = new Array('<span style = "font-size:14px">565 Quincy\'\s Hot!</span>', 'This glass and steel structure above a vintage brick and concrete building is located just steps from Union Station and the Sears Tower in the heart of Chicago. <a href = "floorplans.php">Click here</a> to select your new home.');


var whichSidebar = Math.round(Math.random()*(5 -1));



function loadSidebar() {
	document.write('<div id="sidebarTop_01" style = "background-image:url(img/sidebar_'+(whichSidebar + 1)+'.jpg);	height: 393px;">');
	document.write('<div id="sidebarTopContent">');
	
	if(whichSidebar == 4)
		document.write('<h1 style = "margin-top:35px">'+textBrick[whichSidebar][0]+'</h1>');
	else document.write('<h1>'+textBrick[whichSidebar][0]+'</h1>');
	
	document.write('<div>'+textBrick[whichSidebar][1]+'</div>');
	document.write('</div>');
	document.write('</div>');


}

//-->

	
		
			
