var baseUrl = 'http://' + document.domain

function $(id) {
	return(document.getElementById(id))
}

function showMenu(menu) {
	hideMenus()
	$(menu + '-button').src = baseUrl + '/images/' + menu + '-button-on.jpg'
	if (menu != 'home') {
		$(menu + '-menu').style.visibility = 'visible'
	}
}

function hideMenus() {
	$('free-estimates-menu').style.visibility = 'hidden'
	$('about-us-menu').style.visibility = 'hidden'
	$('locations-menu').style.visibility = 'hidden'
	$('contact-us-menu').style.visibility = 'hidden'

	$('home-button').src = baseUrl + '/images/home-button' + home_button + '.jpg'
	$('free-estimates-button').src = baseUrl + '/images/free-estimates-button' + free_button + '.jpg'
	$('about-us-button').src = baseUrl + '/images/about-us-button' + about_button + '.jpg'
	$('locations-button').src = baseUrl + '/images/locations-button' + locations_button + '.jpg'
	$('contact-us-button').src = baseUrl + '/images/contact-us-button' + contact_button + '.jpg'
}

function showImage(element, image) {
	element.src = baseUrl + image
}

// Set the selected value
// Select the first one if the value was not found
function set_select_value(select, value) {
	var options = select.options
	var set = false
	for (var i=options.length-1; i>=0; i--) {
		if (options[i].value == value) {
			options[i].selected = true
			set = true
		}
	}

	if (!set) {
		options[0].selected = true
	}
}

var dynamic_content = new Array()
var dynamic_image = new Array()

dynamic_content['index'] =
"<h1>You Have Dreams.<br />We Have Solutions.</h1><p>With over 47 years of combined service and experience and offices in Columbus, Cleveland, Cincinnati, Indianapolis, Louisville, Charlotte and Raleigh, Commercial Works is the exclusive single source solution to Plan, Furnish, Move and Manage your business workspace requirements.</p><p>The Commercial-Works team stands readyto serve you.</p>";
dynamic_image['index'] = 'index-bg.jpg'

dynamic_content['plan-button'] =
"<h1>Plan</h1><p>Achieving business objectives requires a plan, and Commercial Works Planning services can ensure that your relocations are completed on time and within budget. From determining your needs, to creating an action plan, Commercial Works has the expertise and experience to plan productive and effective use of your existing or new space. Contact us today to find out how our planning services can make your next move your best move.</p>"
dynamic_image['plan-button'] = 'plan-bg.jpg'

dynamic_content['furnish-button'] = "<h1>Furnish</h1><p>Commercial Works can support all of your office furniture needs. - from a single desk<br />or file cabinet . to outfitting and entire office building. We now represent over 50 lines of brand name contract grade furnishings, systems furniture, case goods, chairs and accessories.  Let us take the worry out of furnishing your new office.</p>"
dynamic_image['furnish-button'] = 'furnish-bg.jpg'

dynamic_content['move-button'] = "<h1>Move</h1><p>Commercial Works is recognized as an industry leader in commercial relocations. From clients with a single office, to moves for Fortune 500 companies - Commercial Works has the experience, knowledge, resources and personnel to handle your project. Our experienced staff of relocation managers can save you valuable time and resources. From routine office reconfigurations, to complex business relocations locally, nationally, or around the globe - Commercial Works has the expertise to keep your project on time and on budget, while minimizing costly business disruptions.</p>"
dynamic_image['move-button'] = 'move-bg.jpg'

dynamic_content['manage-button'] = "<h1>Manage</h1><p>Commercial Works has experience in managing relocation projects of all scope and size throughout the country. With our broad base of experienced project management professionals, Commercial Works can oversee your entire relocation process from conception to a successful completion.  Most importantly, we can help deliver your project on time, within budget, and with minimal business disruptions - allowing you to stay focused on your business.</p><p>Contact us today to find out more about our Project and Move Management services.</p>"
dynamic_image['manage-button'] = 'manage-bg.jpg'
