Your IP : 18.118.151.211


Current Path : /home/church/public_html/comparefloridarates.com/scripts/
Upload File :
Current File : /home/church/public_html/comparefloridarates.com/scripts/image.slider.js

//  images/slider/slider-1.png

var currentBackground = 0;
var backgrounds = [];
backgrounds[0] = 'images/slider-4.jpg';
backgrounds[1] = 'images/slider-2.jpg';
backgrounds[2] = 'images/slider-3.jpg';
backgrounds[3] = 'images/slider-1.jpg';

function changeBackground() {
    currentBackground++;
    if(currentBackground > 3) currentBackground = 0;

    $('.photo-bg').fadeOut(500,function() {
        $('.photo-bg').css({
            'background-image' : "url('" + backgrounds[currentBackground] + "')"
        });
        $('.photo-bg').fadeIn(500);
    });


    setTimeout(changeBackground, 10000);
}

$(document).ready(function() {
    setTimeout(changeBackground, 10000);        
});

//NAV MENU
var fadetimer	= 0;
var menutitle	= 0;
var fader   	= 500;

function menuopen(id)
	{	
		menucancelfadetimer();
		
		if (menutitle) menutitle.style.visibility = 'hidden';
			menutitle = document.getElementById(id);
			menutitle.style.visibility = 'visible';
	}
		function menuclose()
			{
				if(menutitle) menutitle.style.visibility = 'hidden';
			}
		function menuclosefade()
			{
				fadetimer = window.setTimeout(menuclose, fader);
			}
		function menucancelfadetimer()
			{
				if(fadetimer)
					{
						window.clearTimeout(fadetimer);  
						fadetimer = null;
				}
}

document.onclick = menuclose;