//alert('hello world');

//images/frame_left.gif
//images/frame_right.gif

parchment_clear = new Image;
parchment_clear.src = "images/parchment_clear.gif";

parchment_left = new Image;
parchment_left.src = "images/parchment_left.gif";

parchment_right = new Image;
parchment_right.src = "images/parchment_right.gif";

parchment_background = new Image;
parchment_background.src = "images/parchment.gif";









services_on = new Image;
services_off = new Image;

services_on.src = "images/btn_services_on.gif";
services_off.src = "images/btn_services_off.gif";

about_us_on = new Image;
about_us_off = new Image;

about_us_on.src = "images/btn_about_us_on.gif";
about_us_off.src = "images/btn_about_us_off.gif";

newsroom_on = new Image;
newsroom_off = new Image;

newsroom_on.src = "images/btn_newsroom_on.gif";
newsroom_off.src = "images/btn_newsroom_off.gif";

contact_on = new Image;
contact_off = new Image;

contact_on.src = "images/btn_contact_on.gif";
contact_off.src = "images/btn_contact_off.gif";

home_on = new Image;
home_off = new Image;

home_on.src = "images/btn_home_on.gif";
home_off.src = "images/btn_home_off.gif";



function turnOnServices() {
	document.services.src = services_on.src;
}
function turnOffServices() {
	document.services.src = services_off.src;
}

function turnOnAboutUs() {
	document.about_us.src = about_us_on.src;
}
function turnOffAboutUs() {
	document.about_us.src = about_us_off.src;
}

function turnOnNewsroom() {
	document.newsroom.src = newsroom_on.src;
}
function turnOffNewsroom() {
	document.newsroom.src = newsroom_off.src;
}

function turnOnContact() {
	document.contact.src = contact_on.src;
}
function turnOffContact() {
	document.contact.src = contact_off.src;
}

function turnOnHome() {
	document.home.src = home_on.src;
}
function turnOffHome() {
	document.home.src = home_off.src;
}