
<!-- hide
if (window.Event) document.captureEvents(Event.MOUSEUP);
function nocontextmenu(){
    event.cancelBubble = true;
    event.returnValue = false;
    return false;
}
function norightclick(e){
    if (window.Event){
        if (e.which == 2 || e.which == 3);
        return false;
    }
    else if (event.button == 2 || event.button == 3){
        event.cancelBubble = true;
        event.returnValue = false;
        return false;
    }
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
// -->


//===============================================
//		This script below is for the image fader
//===============================================

// (C) 2005 www.seniorboys.com
// http://www.seniorboys.com

// =======================================
// set the following variables
// =======================================

// Set speed (milliseconds)
var speed = 12500

// Specify the text & image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/data_protect.jpg'
Pic[1] = 'images/cardiology.jpg'
Pic[2] = 'images/care.jpg'
Pic[3] = 'images/surgery2.jpg'
Pic[4] = 'images/med_research.jpg'
Pic[5] = 'images/ward2.jpg'
Pic[6] = 'images/theatre.jpg'
Pic[7] = 'images/ward4.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   document.images.SlideShow.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', speed)
}


//=========================================================================================
//		The script below is for the Help File
//=========================================================================================

// (C) 2005 www.seniorboys.com
// http://www.seniorboys.com

function showHelp(screen)
    {
    var ss;
    //Build header for help text window
    //=================================
ss = window.open("help.htm","ss","width=380,height=130,toolbar=0,status=0,scrollbar=no");
    }
