$(document).ready(function(){

	$("#thumbsAlbum li a").hover(function(){
		$(this).find('span').fadeIn();
	},function(){
		$(this).find('span').fadeOut();
	
	});
	
	//cycle
	$('.imagesGalery ul ').cycle({
        fx: 'fade',
        speed: 'slow',
        timeout:'5000',
        pager:'#pagerGalery'
    });


});
