/* Just some Javascript for the project pages... */ backoff = new Image backoff.src = '../../images/back.gif' backon = new Image backon.src = '../../images/back_on.gif' indexoff = new Image indexoff.src = '../../images/index.gif' indexon = new Image indexon.src = '../../images/index_on.gif' nextoff = new Image nextoff.src = '../../images/next.gif' nexton = new Image nexton.src = '../../images/next_on.gif' one = new Image one.src = '../../images/one.gif' oneon = new Image oneon.src = '../../images/one_on.gif' two = new Image two.src = '../../images/two.gif' twoon = new Image twoon.src = '../../images/two_on.gif' three = new Image three.src = '../../images/three.gif' threeon = new Image threeon.src = '../../images/three_on.gif' four = new Image four.src = '../../images/four.gif' fouron = new Image fouron.src = '../../images/four_on.gif' function onOneOver() { document.one.src=oneon.src } function onOneOut() { document.one.src=one.src; } function onTwoOver() { document.two.src=twoon.src } function onTwoOut() { document.two.src=two.src; } function onThreeOver() { document.three.src=threeon.src } function onThreeOut() { document.three.src=three.src; } function onFourOver() { document.four.src=fouron.src } function onFourOut() { document.four.src=four.src; } function onSleeveA() { document.sleeve.src=sleeve_a.src; } function onSleeveB() { document.sleeve.src=sleeve_b.src; } function onSleeveC() { document.sleeve.src=sleeve_c.src; } function onSleeveD() { document.sleeve.src=sleeve_d.src; } function on(imgName) { if (document.images) document[imgName].src = eval(imgName + "on.src"); } function off(imgName) { if (document.images) document[imgName].src = eval(imgName + "off.src"); } // End -->