<!--

var flag=false;

// This function is used to preload all the images for rollovers
// and initialise all the objects
function initialise() {
// Preloading images goes here

 if (document.images) {
graphics_on     = new Image(); graphics_on.src     = "images/buttons/graphics_on.gif";
advertising_on     = new Image(); advertising_on.src     = "images/buttons/advertising_on.gif";
comp_literature_on = new Image(); comp_literature_on.src = "images/buttons/comp_literature_on.gif";
corp_identity_on   = new Image(); corp_identity_on.src   = "images/buttons/corp_identity_on.gif";
direct_promo_on    = new Image(); direct_promo_on.src    = "images/buttons/direct_promo_on.gif";
email_on           = new Image(); email_on.src           = "images/buttons/email_on.gif";
exhibitions_on     = new Image(); exhibitions_on.src     = "images/buttons/exhibitions_on.gif";
homepage_on        = new Image(); homepage_on.src        = "images/buttons/homepage_on.gif";
leftarrow_on       = new Image(); leftarrow_on.src       = "images/buttons/leftarrow_on.gif";
multi_web_on       = new Image(); multi_web_on.src       = "images/buttons/multi_web_on.gif";
packaging_on       = new Image(); packaging_on.src       = "images/buttons/packaging_on.gif";
report_acc_on      = new Image(); report_acc_on.src      = "images/buttons/report_acc_on.gif";
rightarrow_on      = new Image(); rightarrow_on.src      = "images/buttons/rightarrow_on.gif";
  return (flag = true);
 }

} // end Initialise

if (document.images) {
graphics     = new Image(); graphics.src     = "images/buttons/graphics.gif";
advertising     = new Image(); advertising.src     = "images/buttons/advertising.gif";
comp_literature = new Image(); comp_literature.src = "images/buttons/comp_literature.gif";
corp_identity   = new Image(); corp_identity.src   = "images/buttons/corp_identity.gif";
direct_promo    = new Image(); direct_promo.src    = "images/buttons/direct_promo.gif";
email           = new Image(); email.src           = "images/buttons/email.gif";
exhibitions     = new Image(); exhibitions.src     = "images/buttons/exhibitions.gif";
homepage        = new Image(); homepage.src        = "images/buttons/homepage.gif";
leftarrow       = new Image(); leftarrow.src       = "images/buttons/leftarrow.gif";
multi_web       = new Image(); multi_web.src       = "images/buttons/multi_web.gif";
packaging       = new Image(); packaging.src       = "images/buttons/packaging.gif";
report_acc      = new Image(); report_acc.src      = "images/buttons/report_acc.gif";
rightarrow      = new Image(); rightarrow.src      = "images/buttons/rightarrow.gif";
}

function turnOn(Name) {
	
    if (document.images && (flag == true)) {
        document[Name].src = eval(Name + "_on.src");
    }
}

function turnOff(Name) {
	
 if (document.images) {
        document[Name].src = eval(Name + ".src");
 }
}
//-->
