// WINDOW STATUS...

function windowStatus() {
	window.status = 'beaches4less.co.uk ... why pay more?   call us today on: 01926 858035'; return true;
}

// ###


// .PNG TRANSPARENCY FUNCTIONS FOR INTERNET EXPLORER 6...

// Finds the browser version:-
var version = navigator.appVersion;

// Renders the .png transparencies in accordance with browser capabilities:-
function pngPresenter(imageDiv,folderNom,fileNom) {
	if (version.indexOf('MSIE 6.0') > 1) {
		document.getElementById(''+imageDiv+'').style.backgroundImage = 'url()';
		document.getElementById(''+imageDiv+'').style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/site/'+folderNom+'/'+fileNom+'.png", sizingMethod="crop")';
	}
}

// Renders the footer tilda icons in accordance with browser capabilities:-
function iconInput(colour) {
	if (version.indexOf('MSIE 6.0') > 1) {
		document.write('<div style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#34;images/site/footer/tilda-'+colour+'.png&#34;); float: left; height: 15px; margin-right: 5px; width: 18px;"></div> ');
	}
	else {
		document.write('<img src="images/site/footer/tilda-'+colour+'.png" alt="" title="" width="18" height="15" />');
	}
}

var mNumTabs = 0;

function setNumTabs(pNumTabs)
{
	mNumTabs = pNumTabs;
}

function tabColourHotels(active)
{
	for(var tabClear=0; tabClear < mNumTabs; tabClear++) {
		document.getElementById('hotel-tab-'+tabClear+'').style.backgroundColor = '#FAEDC9';
	}
	document.getElementById('hotel-tab-'+active+'').style.backgroundColor = '#EDB826';
}

// NAVIGATOR MENU SYSTEM...

//These functions reveal/hide a navigator menu when the user rolls over and away from a navigator button or menu:-

function menuReveal(thisMenu) {
	var menuContainer = document.getElementById('menu-dir-'+thisMenu+'-container');

	if (menuContainer)
	{
		menuContainer.style.visibility = 'visible';
	}
}

function menuHide(thisMenu) {
	var menuContainer = document.getElementById('menu-dir-'+thisMenu+'-container');

	if (menuContainer)
		menuContainer.style.visibility = 'hidden';
}

// ###

// This function enables the 're-use' of the transparent photo frame within the dropdown menus:-
function menuPhotoFrame() {
	if (version.indexOf('MSIE 6.0') > 1) {
		document.write('<div style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#34;images/site/navigator-menu-photos/photo-frame.png&#34;); height: 81px; width: 163px;"></div>');
	}
	else {
		document.write('<img src="images/site/navigator-menu-photos/photo-frame.png" alt="" title="" width="163" height="81" />');
	}
}

// Renders the menu footer:-
function menuBorderFooter(folderNum,tabNum) {
	if (version.indexOf('MSIE 6.0') > 1) {
		document.write('<div style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#34;images/site/navigator-menu-'+folderNum+'/'+tabNum+'-footer.png&#34;); height: 12px; width: 374px;"></div>');
	}
	else {
		document.write('<img src="images/site/navigator-menu-'+folderNum+'/'+tabNum+'-footer.png" alt="" title="" width="374" height="12" />');
	}
}

