//slideshow demo
	//counter
	var a = 0;
	//store some images in an array
	var homePageShowArray = ["images/back.jpg"];
	
	//background image loading functions, loads first image on page load
	$(document).ready(function() {		
		//start gallery
		homePageShow();			  
	});
	
	//simple method for calling the npFullBgImg methods and loading in a new image.
	function homePageShow() {
		 //request an image, with a call back to start the gallery timer each time the image is loaded and displayed  
		 $('#imgContainer').npFullBgImg(homePageShowArray[a], {fadeInSpeed: 2000, center: true, callback:function(){startGalleryTimer()}});
		 //increment counter
		 a++;
		 //loop gallery here
		 if(a == homePageShowArray.length) a=0;
	}
	
	function startGalleryTimer() {
		//set up timer for gallery, set here to 10 seconds.
		setTimeout("homePageShow()", 10000);
	}

