// JavaScript Document

function gallery($image) {
	var $text = [];
	$text['castlegardens'] = "<b>Windsor Castle</b> covers an area of about 13 acres and contains magnificent state apartments furnished with treasures from the Royal Collection. There is a magnificent view north from the ramparts, across the Thames and beyond over the playing fields of Eton College.";
	$text['etonbridge'] = "<b>Eton Bridge</b> spans the river Thames between Royal Windsor and the village of Eton. Completed in 1824 at a cost of &pound;15,000, evidence suggests there was a bridge here in the bronze age, around 1400-1300BC.";
	$text['guards'] = "<b>The Changing of the Guard</b> is one of the highlights of a visit to Windsor. The ancient ceremony takes place at 11am in Windsor High Street. A band usually accompanies the Guards, as they march up the High Street and into the Castle.";
	$text['etonchapel'] = "<b>Eton Chapel</b> is part of the famous Eton College and is located just across the river from Windsor. Founded in 1440 by Henry VI, Eton College's former pupils include 18 British Prime Ministers.";
	$text['magna'] = "<b>Magna Carta</b> (Latin for 'great charter') was sealed by King John at Runnymede in June 1215. Known as the Great Charter of English Liberties, it formed a peace treaty with barons who were in revolt against the King.";
	$text['park'] = "<b>Windsor Great Park</b> comprises 5,000 acres of the Berkshire and Surrey countryside stretching from Windsor Castle in the north to Ascot in the south. This is all that is left of the once mighty Windsor Forest.";
	$text['castle'] = "<b>Windsor Castle</b> is the oldest and largest occupied castle in the world and official residence of Her Majesty The Queen. Its rich history spans almost 1000 years from the time of William the Conqueror.";
	$text['savill'] = "<b>The Savill Garden</b>, created in the 1930s by Sir Eric Savill, is one of Britain's greatest ornamental gardens. It never fails to charm visitors who come to explore its 35 acres of contemporary and classically designed gardens and exotic woodland.";
	$text['thames'] = "<b>The Thames</b> at Windsor offers many opportunities for relaxation. A variety of boats are available for hire including rowing boats, motor boats and larger cruisers for extended trips up and down the river.";
	$text['wheel'] = "The <b>Royal Windsor Wheel</b> at Alexandra Gardens soars over 50 metres into the skies above historic Windsor, with breathtaking views over the Castle battlements, the River Thames and the stunning countryside beyond.";
	
	document.getElementById("hero").src = ("images/gallery_large_"+$image+".jpg");
	document.getElementById("caption").innerHTML = $text[$image];
}


function rooms($room) {
	document.getElementById("hero").style.display = "none";
	for ($n=1; $n<=10; $n++) {
		if ($n == $room) {
			document.getElementById("room_"+$n).style.display = "block";
		} else {
			document.getElementById("room_"+$n).style.display = "none";
		}
	}
}

function team($member) {
	document.getElementById("hero").style.display = "none";
	for ($n=1; $n<=4; $n++) {
		if ($n == $member) {
			document.getElementById("member_"+$n).style.display = "block";
		} else {
			document.getElementById("member_"+$n).style.display = "none";
		}
	}
}

function sora($image) {
	document.getElementById("hero").src = ("images/sora_large_"+$image+".jpg");
}


var $n=1;
var $imagecount=0;
var imagea1;
var imagea2;

function setup_home() {
	imagea1=new Image();
	imagea1.src="images/home_hero_1.jpg";
	imagea2=new Image();
	imagea2.src="images/home_hero_2.jpg";
	imagea3=new Image();
	imagea3.src="images/home_hero_3.jpg";
	imagea4=new Image();
	imagea4.src="images/home_hero_4.jpg";
	imagea5=new Image();
	imagea5.src="images/home_hero_5.jpg";
	$imagecount=5;
}

function slide($element){
	if (!document.images)
	return
	document.getElementById($element).src = eval("imagea"+$n+".src")
	if ($n<$imagecount)
	$n++;
	else
	$n=1;
	//call function "slideit()" every 2.5 seconds
	setTimeout("slide('"+$element+"')",3000);
}

$(document).ready(function() {
	$('div#navigation').click(function(event) {
		if ($(event.target).is('.nav_link')) {
			return;
		} else {	
			window.open("http://www.tripadvisor.co.uk/Hotel_Review-g186419-d1474534-Reviews-Frances_Lodge-Windsor_Windsor_and_Maidenhead_Berkshire_England.html");
	        return false;
		}
	});	
});
