$(document).ready(function(){
			
	$('ul#front-gallery').galleria({
		history   : false, // activates the history object for bookmarking, back-button etc.
		clickNext : true, // helper for making the image clickable
		insert    : '#home-photo', // the containing selector for our main image
		onImage   : function(image,caption,thumb) { // image effects should go here
			
			// fade in the image & caption
			image.css('display','none').fadeIn(2000);
			// add a title for the clickable image
			image.attr('title','Carson Plumbing');
		},
		onThumb : function(thumb) { // thumbnail effects go here -- if we were displaying thumbnails
		}
	});
	
	window.setInterval(function(){
        $.galleria.next()
    }, 8000);
});


