//Preload Images
//--------------
if (document.images) {
	image01 = new Image;
	image02 = new Image;
	image03 = new Image;
	image04 = new Image;
	image05 = new Image;
	image06 = new Image;
		
	image01.src = 'Media/Images/team-big-01.jpg';
	image02.src = 'Media/Images/team-big-02.jpg';
	image03.src = 'Media/Images/team-big-03.jpg';
	image04.src = 'Media/Images/team-big-04.jpg';
	image05.src = 'Media/Images/team-big-05.jpg';
	image06.src = 'Media/Images/team-big-06.jpg';
					
}

var strteamname;
var strteamtext;
var strteamemail;
var strteamimage;

function changeTeam(passedVal){
	switch (passedVal)
	{
	case 1:
		strteamname = "<p class=\"green\"><span class=\"green\"><strong>Denise Ellis</strong></span></p>";
		strteamtext = "<p>Denise founded Conference Contacts in 1986 having worked for a number of major hotel groups throughout the world. She has a wide knowledge of hotel operations and business tourism and has used this expertise to grow Conference Contacts into the organisation we see today. Denise believes in putting the customer first and has built the business around this philosophy, and is proud that she still retains clients who have been with the company from the beginning. Today Denise’s main focus is on business development.</p>";
		strteamemail = "<p><strong>Job Title: </strong>Managing Director<br /><strong>Email: </strong><a title=\"mailto:deniseellis@c-contacts.com\" href=\"mailto:deniseellis@c-contacts.com\">deniseellis@c-contacts.com</a></p>";
		strteamimage = image01.src;
	break
	case 2:
		strteamname = "<p class=\"green\"><span class=\"green\"><strong>Michael Avery</strong></span></p>";
		strteamtext = "<p>Michael has extensive hotel experience particularly in the areas of events, conference and banqueting. His role combines operational and commercial responsibilities, focusing on developing strategic partnerships and preferred supplier arrangements to the benefit of our client base.</p>";
		strteamemail = "<p><strong>Job Title: </strong>Director<br /><strong>Email: </strong><a title=\"mailto:mavery@c-contacts.com\" href=\"mailto:mavery@c-contacts.com\">mavery@c-contacts.com</a></p>";		
		strteamimage = image02.src;
	break
	case 3:
		strteamname = "<p class=\"green\"><span class=\"green\"><strong>Rosalyn Giles</strong></span></p>";
		strteamtext = "<p>Rosalyn has been with Conference Contacts for 10 years prior to this she was a client of the company working in the IT industry. She possesses excellent operational and negotiating skills together with a first class attention to detail. Her role as Head of Operations is to oversee all event operations for the company.</p>";
		strteamemail = "<p><strong>Job Title: </strong>Operations Director<br /><strong>Email: </strong><a title=\"mailto:rgiles@c-contacts.com\" href=\"mailto:rgiles@c-contacts.com\">rgiles@c-contacts.com</a></p>";		
		strteamimage = image03.src;
	break
	case 4:
		strteamname = "<p class=\"green\"><span class=\"green\"><strong>Antony Waite</strong></span></p>";
		strteamtext = "<p>An established member of the team , Antony is a highly adaptable, professional and self motivated individual, able to work in a high pressure, deadline driven environment. He has excellent communication skills, combined with a meticulous approach to client requirements. </p>";
		strteamemail = "<p><strong>Job Title: </strong>Senior Account Manager<br /><strong>Email: </strong><a title=\"mailto:awaite@c-contacts.com\" href=\"mailto:awaite@c-contacts.com\">awaite@c-contacts.com</a></p>";		
		strteamimage = image04.src;
	break
	case 5:
		strteamname = "<p class=\"green\"><span class=\"green\"><strong>Kate Asbury</strong></span></p>";
		strteamtext = "<p>The Operations Department now welcome a new member to the team, university graduate Kate, following her degree course in Tourism Management.  With her excellent organisational and interpersonal skills, as well as an eye for detail, her role will encompass supporting our unique delegate management registration system, venue finding and on-going on-site assistance.</p>";
		strteamemail = "<p><strong>Job Title: </strong>Event Support Co-ordinator<br /><strong>Email: </strong><a title=\"mailto:kasbury@c-contacts.com\" href=\"mailto:kasbury@c-contacts.com\">kasbury@c-contacts.com</a></p>";		
		strteamimage = image05.src;
	break
	case 6:
		strteamname = "<p class=\"green\"><span class=\"green\"><strong>Michael Moore</strong></span></p>";
		strteamtext = "<p>Michael Moore worked in the Publishing Industry for over thirty years and in a senior capacity for approximately 15 of those years. His role at Conference Contacts is to advise on innovation, commercial strategies and finance </p>";
		strteamemail = "<p><strong>Job Title: </strong> Chairman<br /><strong>Email: </strong><a title=\"mailto:mmoore@c-contacts.com\" href=\"mailto:mmoore@c-contacts.com\">mmoore@c-contacts.com</a></p>";
		strteamimage = image06.src;
	break
	}

	if (document.layers){
		//Netscape 4 specific code
		document.teamname.innerHTML = strteamname;
		document.teamtext.innerHTML = strteamtext;
		document.teamemail.innerHTML = strteamemail;
		document.largeImage.src = strteamimage;
	}
	if (document.getElementById){
		//Netscape 6 specific code
		document.getElementById("teamname").innerHTML = strteamname;
		document.getElementById("teamtext").innerHTML = strteamtext;
		document.getElementById("teamemail").innerHTML = strteamemail;
		document.getElementById("largeImage").src = strteamimage;
	}
	if (document.all){
		//IE4+ specific code
		document.all.teamname.innerHTML = strteamname;
		document.all.teamtext.innerHTML = strteamtext;
		document.all.teamemail.innerHTML = strteamemail;						
		document.all.largeImage.src = strteamimage;
	}
}