window.bgPhotoJsArray = new Array();
window.initialphoto = 0;
window.t=0;
//for mayakaras fading picture gallery
window.mayaSectionClicked = false;
window.IE_in_use = false;

window.browser =  navigator.appName;
//alert(browser);

if (browser == "Microsoft Internet Explorer") {

		window.appVersionInfo = navigator.appVersion;
		window.browserInfo = appVersionInfo.split(";");
		window.browserVersion = browserInfo[1];
		window.browserIE_details = browserVersion.split(" ");
		window.browserType = browserIE_details[1];
		window.browserNo = browserIE_details[2];
		if (browserType == "MSIE") {  

		/*alert("Currently developing site for this browser.If you have a browser such as Chrome, Safari, Opera or Firefox, the site will render better. But failing that please click ok to enter the site in it's current development");*/

		IE_version();

		}
}

function IE_version() {	

		switch(browserNo)  //has a switch function which uses the li label to then feed into the menuCheck function to cue the bespoke animation of the three blocks
		{
			case "9.0":
			//alert("IE 9 should be ok"); 
			 window.IE_in_use = true;
		  break;
			 case "8.0":
			 window.IE_in_use = true;
			//alert("IE 8 should be okish"); 
		  break;
		    case "7.0":
			window.IE_in_use = true;
			//window.location = "http://www.liladance.co.uk/lila2011"
		  break;
		    case "6.0":
			window.IE_in_use = true;
			//window.location = "http://www.liladance.co.uk/lila2011"
			
		  break;
							  
		default:
			window.IE_in_use = true;
		    alert("not supported"); 
		}
	}
							
					  
				
