<!--

var myPlatform=navigator.platform.substr(0,3);
if (myPlatform=="Mac") {
     document.write("<link rel=\"stylesheet\" href=\"js_bin/seaton_mac.css\" type=\"text/css\">");
}
else {
     document.write("<link rel=\"stylesheet\" href=\"js_bin/seaton_win.css\" type=\"text/css\">");
}

var object=new Array();


object['company']= new objectdata(95,25,"imgs/company_o.gif","imgs/company.gif","Company");
object['services']= new objectdata(91,25,"imgs/services_o.gif","imgs/services.gif","Services");
object['workshops']= new objectdata(112,25,"imgs/workshops_o.gif","imgs/workshops.gif","Available Workshops");
object['faq']= new objectdata(66,25,"imgs/faq_o.gif","imgs/faq.gif","Frequently Asked Questions");
object['resources']= new objectdata(105,25,"imgs/resources_o.gif","imgs/resources.gif","Resources & Links");
object['contact']= new objectdata(90,25,"imgs/contact_o.gif","imgs/contact.gif","Contact Us");
object['credits']= new objectdata(153,19,"imgs/credits_o.gif","imgs/credits.gif","http://www.webstrim.com/");

function objectdata(hsize,vsize,imgovr,imgout,msg) {
		this.img_ovr=new Image(hsize,vsize);
		this.img_ovr.src=imgovr;
		this.img_out=new Image(hsize,vsize);
		this.img_out.src=imgout;
		this.msg=msg;
}

function m_ovr(name) {
		window.status=object[name].msg;
		document.getElementById(name).src=object[name].img_ovr.src;
//		document[name].src=object[name].img_ovr.src;
//      and change "id" for "name" in the <img src> tag of the source file
}

function m_out(name) {
		window.status="";
        document.getElementById(name).src=object[name].img_out.src;
//		document[name].src=object[name].img_out.src;
}

function doResize() {
        location.reload();
}

// -->
