$(document).ready(function(){
	EnableGalleryHome();
});

function EnableGalleryHome() {
	if ( $("#galleryHome") ) {
		$('#galleryHome').cycle({
			fx: 'fade',// choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout: 6000
		});
	}
}
