if (document.images) {

//	OFF MENU SRC
	var webdesign_off = new Image(); webdesign_off.src = "images/nav03.jpg";
	var seo_off = new Image(); seo_off.src = "images/nav04.jpg";
    
    
//	ON MENU SRC
	var webdesign_on = new Image(); webdesign_on.src = "images/nav03a.jpg";
	var seo_on = new Image(); seo_on.src = "images/nav04a.jpg";
}


//	TURN ON IMG
function turnOn(imgName) {
	if (document.images) {
		document[imgName].src = eval (imgName + '_on.src');
	}
}

//	TURN OFF IMG
function turnOff(imgName) {
	 if (document.images) {
	 	document[imgName].src = eval (imgName + '_off.src');
	}
}

function swf_s(f){}
