var loaded = false;if (document.images) {    img1off = new Image();img1off.src = "images/menu_home_off.jpg";    img2off = new Image();img2off.src = "images/menu_feature_off.jpg";    img3off = new Image();img3off.src = "images/menu_interview_off.jpg";	img4off = new Image();img4off.src = "images/menu_order_off.jpg";	img5off = new Image();img5off.src = "images/menu_blog_off.jpg";	img6off = new Image();img6off.src = "images/menu_contact_off.jpg";	img7off = new Image();img7off.src = "images/fund_btn_off.jpg";}function imageLoad() {    if (document.images) {    img1on = new Image();img1on.src = "images/menu_home_over.jpg";    img2on = new Image();img2on.src = "images/menu_feature_over.jpg";    img3on = new Image();img3on.src = "images/menu_interview_over.jpg";	img4on = new Image();img4on.src = "images/menu_order_over.jpg";	img5on = new Image();img5on.src = "images/menu_blog_over.jpg";	img6on = new Image();img6on.src = "images/menu_contact_over.jpg";	img7on = new Image();img7on.src = "images/fund_btn_over.jpg";        return (loaded = true);    }}function rollOut(imgName) {    if (document.images) {        document[imgName].src = eval(imgName+"off.src");    }}function rollIn(imgName) {    if (document.images && (loaded == true)) {        document[imgName].src = eval(imgName+"on.src");    }}function writeFlash(id) {	document.getElementById(id).innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='234' height='157' id='myflash' align='middle'><param name='allowScriptAccess' value='sameDomain' /><param name='movie' value='logo.swf' /><param name='quality' value='high' /><param name='bgcolor' value='#ffffff' /><embed src='logo.swf' quality='high' bgcolor='#ffffff' width='234' height='157' name='mymovie' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' /></object>";}