$(function() {
	$('.no-js').removeClass('no-js');
	
	// Banner animation:
	animStart();
	gallerySetup();
	samplesSetup();
});

function animStart() {
	var images = $('#animation .images img');
	$('#animation .images').html('').append(images);
	$('#animation .images img, #animation .tagline').hide();
	$('#animation .images img:first').fadeIn(1500, animShowTagline);	
}

function animShowTagline() {
	$('#animation .tagline').slideDown(1000, animStartSlideshow);
}

function animStartSlideshow() {
	$('#animation .images').cycle({timeout:5000, speed:1500});
}

function gallerySetup() {
	$('#thumbnails').galleriffic({
		imageContainerSel: '#target',
		syncTransitions: true
	});
	$('#thumbnails a').hover(
		function() {
			if ($(this).parent('.selected').size() == 0) {
				$(this).click();
			}
		},
		function() {}
	);									
}

function samplesSetup() {
	$('#samples-gallery a').each(function() {
		var title = $(this).find('img').attr('alt');
		$(this).attr('rel', 'samples').fancybox({
			cyclic: true,
			titlePosition: 'over',
			title: title
		});
	});
}
