$(document).ready(function(){
	
	$('div.gallerylinks a').lightBox();
	
	$('.msgok').each(coolReveal);
	$('.msgerror').each(coolReveal);
	
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
	
});

function coolReveal() {
	$(this).hide();
	$(this).slideDown('slow'); 
}

function initializeSlideshow() {
	$('.slideshow-inner').cycle({ 
		fx: 'fade', 
		speed: 1200,
		timeout: 4000
	});
}

