jQuery(document).ready(function(){
	    $(function() {
				var slideshow = $("gallerytitle");
				var active = false;
				var gal = jQuery('#home-images');
				gal.find('.start').css("cursor", "pointer").click(function() {
					if (!active) {
						active = !active;
						$.galleria.next();
                            gal.everyTime('5s', 'slideshow', function() {
                                $.galleria.next();
                            });
                        }
                });
				gal.find('.stop').css("cursor", "pointer").click(function() {
					if (active) {
						active = !active;
						gal.stopTime('slideshow');
					}
				});
                gal.everyTime('5s', 'slideshow', function() {
                    $.galleria.next();
                });
		});
});
