/* JavaScript */

function preload_images(show) {

var img1 = new Image();
var img2 = new Image();
var img3 = new Image();
var img4 = new Image();
var img5 = new Image();

var img6 = new Image();
var img7 = new Image();

var img8 = new Image();
var img9 = new Image();


img1.src = "images/about_us_on.gif";
img2.src = "images/clients_on.gif";
img3.src = "images/government_on.gif";
img4.src = "images/commercial_on.gif";
img5.src = "images/residential_on.gif";

img6.src = "images/home_on.gif";
img7.src = "images/contact_us_on.gif";

img8.src = "images/sub_button.jpg";
img9.src = "images/sub_button_on.jpg";

if (show) { alert("This site is currently UNDER CONSTRUCTION. Please feel free to look around."); }

}

function swap(obj_id, val, ref) {
	var obj = document.getElementById(obj_id);
	obj.src = "images/" + val;
	if (ref) {
		var men = document.getElementById(ref);
			// alert(men.className);
		if (men.className == "sub_menu") {
			men.className = "sub_menu_on";
		} else {
			men.className = "sub_menu";
		} // end if 
	}
}

function swap_sub(obj_id, val) {
	var obj = document.getElementById(obj_id);
	obj.src = "images/" + val + ".jpg";
}


function load_projects_menu() {
	
var menu = "";
menu += "<br><br><table cellpadding='0' cellspacing='0' class='subber_table'>";
menu += "<tr><td width='98'>";

menu += "<table cellpadding='0' cellspacing='0' width='98'>";
menu += "<tr><td width='98' height='40'><a href='commercial.html' class='sub_link' onmouseover='swap_sub(\"sub4\", \"sub_button_on\")' onmouseout='swap_sub(\"sub4\", \"sub_button\")'>COMMERCIAL</a><img src='images/sub_button.jpg' width='98' height='40' id='sub4'></td></tr>";
menu += "<tr><td width='98' height='40'><a href='government.html' class='sub_link' onmouseover='swap_sub(\"sub5\", \"sub_button_on\")' onmouseout='swap_sub(\"sub5\", \"sub_button\")'>GOVERNMENT</a><img src='images/sub_button.jpg' width='98' height='40' id='sub5'></td></tr>";
menu += "<tr><td width='98' height='40'><a href='residential.html' class='sub_link' onmouseover='swap_sub(\"sub6\", \"sub_button_on\")' onmouseout='swap_sub(\"sub6\", \"sub_button\")'>RESIDENTIAL</a><img src='images/sub_button.jpg' width='98' height='40' id='sub6'></td></tr>";
menu += "</table>";

menu += "</td><td width='5' bgcolor='black' style='opacity:0.4;filter:alpha(opacity=40)'>&nbsp;</td>";
menu += "</tr><tr>";
menu += "<td bgcolor='black' height='5' style='opacity:0.4;filter:alpha(opacity=40)'></td>";
menu += "<td bgcolor='black' height='5' style='opacity:0.4;filter:alpha(opacity=40)'></td>";
menu += "</tr>";
menu += "</table>";

document.write(menu);

}

function load_process_menu() {
var menu = "";
menu += "<br><br><table cellpadding='0' cellspacing='0'>";
menu += "<tr><td width='98'>";

menu += "<table cellpadding='0' cellspacing='0' width='98'>";
menu += "<tr><td width='98' height='40'><a href='case_study.html' class='sub_link' onmouseover='swap_sub(\"sub1\", \"sub_button_on\")' onmouseout='swap_sub(\"sub1\", \"sub_button\")'>CASE STUDY</a><img src='images/sub_button.jpg' width='98' height='40' id='sub1'></td></tr>";
menu += "</table>";

menu += "</td><td width='5' bgcolor='black' style='opacity:0.4;filter:alpha(opacity=40)'>&nbsp;</td>";
menu += "</tr><tr>";
menu += "<td bgcolor='black' height='5' style='opacity:0.4;filter:alpha(opacity=40)'></td>";
menu += "<td bgcolor='black' height='5' style='opacity:0.4;filter:alpha(opacity=40)'></td>";
menu += "</tr>";
menu += "</table>";

document.write(menu);
}

function validate(obj) {
	var ret = true;
	var resp = "Your form cannot be submitted. Please ensure you have entered the following information:\n\n";
	
	var req = obj.required.value.toString();
	var newReq = req.replace(", ", ",");
	var req = newReq.split(",");

	for (i=0;i<req.length;i++) {
		var idx = req[i].replace(" ", "_");
		if (obj.elements[idx].value == "") {
			ret = false;
			resp += "- "+idx.replace("_", " ")+"\n";
		}
	}


	if (ret == false) {
			alert(resp);
	}

	return ret;


}

function show_address() {
	document.write("<br /><p class='addy'>Andree Studios Inc.<br />135 Krog Street<br />Atlanta, GA 30307<br /><br />Phone: 404-523-2754<br/>Fax: 404-659-4414</p>\n");
}

function show_contact() {
	document.write("<br /><hr><p class='addy'>Andree Studios Inc.<br />135 Krog Street<br />Atlanta, GA 30307<br /><br />Phone: 404-523-2754<br/>Fax: 404-659-4414</p>\n");
}