/**
 * @author mfiume
 */

var t;
var index_info = "Fiume Interiors: where the essence of home begins.";
var about_info = "Familiarize yourself with the company and discover how Fiume Interiors has established itself as an acclaimed preeminence in the home interiors industry."; 
var gallery_info = "It is said that a picture is worth a thousand words. Browse through our gallery of pictures that will, besides the popular motto, leave you speechless.";
var staff_info = "Meet the people behind the name who distinguish Fiume Interiors as an organization unrivaled in superiority.";
var contact_info = "Contact a member of our staff directly via phone, fax, or email to reserve an appointment or to make a general inquiry.";
var product_info = "Browse through our product lines."; 

function header(which) {
	document.write(""
		+ "<div id=\"headbanner\">"
			+ "<link rel='stylesheet' type='text/css' href='./css/style.css' />" 
			+ "<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>" 
			+ "<img id=\"logo\" src=\"./images/orangelog.png\"></img>");
	
	menu();
	document.write("<div id=\"info\"></div>");
	info(which);
	document.write("</div>");
}

function chgallery(which) {
	
	fr = document.getElementById("galleryframe");
	
	switch(which) {
		case 'kitchens':
			fr.src = './galleries/kitchens/index.html'
			break;
		case 'baths':
			fr.src = './galleries/baths/index.html'
			break;
		case 'accessories':
			fr.src = './galleries/accessories/index.html'
			break;
	}
	
}

function menu() {
	
	document.write(""
		+ "<div id=\"menu\">"
		+ "<a href=\"home.html\" onmouseover=\"javascript:info('home')\">Home</a>"
		+ "<a href=\"about.html\" onmouseover=\"javascript:info('about')\">About us</a>"
		+ "<a href=\"products.html\" onmouseover=\"javascript:info('products')\">Products</a>"
		+ "<a href=\"gallery.html\" onmouseover=\"javascript:info('gallery')\">Gallery</a>"
		+ "<a href=\"staff.html\" onmouseover=\"javascript:info('staff')\">Staff</a>"
		+ "<a href=\"contact.html\" onmouseover=\"javascript:info('contact')\">Contact us</a>"
		+ "</div>"
		);
}

function info(txt) {
	
	var info_txt = "";
	
	switch (txt) {
		case 'home':
			$info_txt = index_info;
			break;
		case 'about':
			$info_txt = about_info;
			break;
		case 'gallery':
			$info_txt = gallery_info;
			break;
		case 'staff':
			$info_txt = staff_info;
			break;
		case 'contact':
			$info_txt = contact_info;
			break;
		case 'products':
			$info_txt = product_info;
			break;
	}
	
	document.getElementById("info").innerHTML = $info_txt;
}

function text(which) { document.getElementById("text_script").src = "./scripts/" + which + ".js"; }

function bottomBody() { document.write("</div></div></div><div id=\"topbanner\" class=\"banner\"></div><div align=\"center\" id=\"footer\">Copywritten &copy 2009 Fiume Interiors</div><br/>"); }

function topBody() { document.write("<div id=\"mainframe\"><div id=\"content\"><script id=\"text_script\" type=\"text/javascript\"></script><div id=\"txt_placeholder\">"); }

function body(which) {
	
	document.write(""

		+ "<div id=\"topbanner\" class=\"banner\"></div>"

		+ "<div id=\"mainframe\">"
			+ "<div id=\"content\">"
					+ "<script id=\"text_script\" type=\"text/javascript\"></script>"
					+ "<div id=\"txt_placeholder\">"
						+ "<div id=\"txt\"><script type=\"text/javascript\">text('" + which + "')</script></div>"
					+ "</div>"
			+ "</div>"
		+ "</div>"
		
		+ "<div id=\"topbanner\" class=\"banner\"></div>"

		+ "<div align=\"center\" id=\"footer\">Copywritten &copy 2009 Fiume Interiors</div><br/>"
		);
}


