// <![CDATA[

/* -------------------------------------------------------------------------------------- front page slide show */
	var preloaded = new Array();

	function preload_images() 
		{
		for (var y = 0; y < arguments.length; y++)
			{
			preloaded[y] = document.createElement('img');
			preloaded[y].setAttribute('src',arguments[y]);
			}
		}

	function doPreload()
		{
		preload_images(
        'http://www.ls6rentals.co.uk/images/toppic1.jpg',
        'http://www.ls6rentals.co.uk/images/toppic2.jpg',
        'http://www.ls6rentals.co.uk/images/toppic3.jpg',
        'http://www.ls6rentals.co.uk/images/toppic4.jpg',
        'http://www.ls6rentals.co.uk/images/toppic5.jpg')
		slideShow();
		}

	var slideCount = Math.floor(Math.random() * preloaded.length);
	var t

	function slideShow()
		{
		slideCount = Math.floor(Math.random() * preloaded.length);
		var h=document.getElementById('whiteBar');
		t=preloaded[slideCount].src;
		h.style.backgroundImage = "url("+t+")";
		timeCount=setTimeout('slideShow()',10000);
		}

		
function addToFavorites(page, desc) {
    if (window.external) {
        window.external.AddFavorite(page, desc)
    } else {
        alert("Sorry! Your browser doesn't support this function.");
    }
}
		
// ]]>

