/****************************
*   > CFS - Generation      *
*   > By Dilip Kakarla      *
*   > JavaScript Document   *
****************************/

/********************
*   Image Preload   *
********************/

if (document.images) {
	homeOn = new Image();
    homeOn.src = "images/home_roll.gif";
    aboutGenerationOn = new Image();
    aboutGenerationOn.src = "images/aboutgeneration_roll.gif";
	theBigQuestionsOn = new Image();
    theBigQuestionsOn.src = "images/thebigquestions_roll.gif";
	investmentProcessOn = new Image();
    investmentProcessOn.src = "images/investmentprocess_roll.gif";
    alGoreOn = new Image();
    alGoreOn.src = "images/algore_roll.gif";
    davidBloodOn = new Image();
    davidBloodOn.src = "images/davidblood_roll.gif";
	
	
	homeOff = new Image();
    homeOff.src = "images/home_normal.gif";
    aboutGenerationOff = new Image();
    aboutGenerationOff.src = "images/aboutgeneration_normal.gif";
	theBigQuestionsOff = new Image();
    theBigQuestionsOff.src = "images/thebigquestions_normal.gif";
	investmentProcessOff = new Image();
    investmentProcessOff.src = "images/investmentprocess_normal.gif";
	alGoreOff = new Image();
    alGoreOff.src = "images/algore_normal.gif";
	davidBloodOff = new Image();
    davidBloodOff.src = "images/davidblood_normal.gif";	
}

/**********************
*   Activate Images   *
**********************/

function imgOn(imgName) {	
	if (document.images) {		
    	document[imgName].src = eval(imgName + "On.src");
	}
}

/************************
*   Deactivate Images   *
************************/

function imgOff(imgName) {
	if (document.images) {
    	document[imgName].src = eval(imgName + "Off.src");
	}
}

/******************
*   Email URL     *
*******************/

function emailURL() {
	/*
	window.location = "mailto:" + "?subject=Generation Global Sustainability Fund" + "&body=These video clips of Al Gore and David Blood may be of interest to you. You can access the video links from the Colonial First State Generation website at " + window.location.href + "%0D%0A%0D%0A";
	*/
	window.location = "mailto:" + "?subject=Generation Global Sustainability Fund" + "&body=These video clips of Al Gore and David Blood may be of interest to you. You can access the video links from the Colonial First State Generation website at www.colonialfirststate.com.au/generation %0D%0A%0D%0A";
}