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

// initGalleryCycle
function initGalleryCycle(){
	if(typeof($.fn.cycle) == 'function'){
		$('.slide-block .slide>ul').cycle({
			pager: '.slide-block .swicher',
			activePagerClass: 'active',
			after: onAfter,
			pause: 1,
			timeout: 4000,
			speed: 500
		});
	}
	function onAfter() {
		$('.slide .heading').html($(this).find('img').attr('alt'))
	}
}

$(document).ready(function() {
    $('.home_slides').cycle({
		fx: 'fade',
		timeout: 6000
	});
});

