/**
 * Clouds & Clouds Midnight
 *   by Fred LeBlanc
 *
 */
$(document).ready(function() {
	$(document).pngFix();
	$('.clouds .download').click(function() {
		window.location.href = './downloads/clouds.zip';
	});
	$('.clouds-midnight .download').click(function() {
		window.location.href = './downloads/clouds-midnight.zip';
	});
	
	$('.thumbs li').click(function(e) {
		e.preventDefault();
		var active = $('.thumbs li.active').attr('id');
		var clicked = $(this);
		//--
		if (active !== clicked.attr('id')) {
			$('.thumbs li').each(function(i) {
				if (clicked.attr('id') !== $(this).attr('id')) {
					$(this).removeClass('active');
				} else {
					$(this).addClass('active');
				}
			});
			$('.load-into img').attr('src', './img/examples/' + $('.thumbs li.active').attr('id') + '.png');		
		}
		//--
		return false;
	})
});