$(document).ready(function() {

	//var images = [
	    //"http://cafelebab.psycle.com/wp-content/themes/lebab/images/header/linguamon_headers_home01-2.jpg",
		//"http://cafelebab.psycle.com/wp-content/themes/lebab/images/header/linguamon_headers_home02-2.jpg",
		//"http://cafelebab.psycle.com/wp-content/themes/lebab/images/header/linguamon_headers_home03.jpg",
		//"http://cafelebab.psycle.com/wp-content/themes/lebab/images/header/linguamon_headers_home04-3.jpg",
		//"http://cafelebab.psycle.com/wp-content/themes/lebab/images/header/linguamon_headers_home00-2.jpg"
		//];
	var nImages = 5;
	var counter = 0;
	setInterval(function() {
		
		$("#header-image-home").removeClass('home-image'+counter);
		counter++;
		if (counter == nImages) {
			counter = 0;
		}
		$("#header-image-home").addClass('home-image'+counter);

		
		
		// $("#header-image-home").css('backgroundImage', 'url("'+images[counter]+'")');
		// $('<img>').attr('src',images[++counter]); // preload the next image
		//if (counter == nImages) {
			//counter = 0;
		//}
	}, 6500);

});

$(function() {
	$('.scroll-pane').jScrollPane();
});


function switchImage(image) {
	if (image==1) {
		$("#banner-image-1").removeClass("off");
		$("#banner-image-2").addClass("off");
		$("#banner-image-3").addClass("off");
	}
	if (image==2) {
		$("#banner-image-1").addClass("off");
		$("#banner-image-2").removeClass("off");
		$("#banner-image-3").addClass("off");
	}
	if (image==3) {
		$("#banner-image-1").addClass("off");
		$("#banner-image-2").addClass("off");
		$("#banner-image-3").removeClass("off");
	}
	return false;
};
