$(document).ready(function(){

	// activate links
	$('#main a').fadeIn('slow');	
	$('.frame a').fadeIn('slow');

	// fire opacity when hovering on thumbnails
	$('.thumb').hover(function(){
		$(this).find('span').fadeTo('fast', 0.5);
	},
	function(){
		$(this).find('span').fadeOut('fast');
	});

	// fire the piroBox overlays
	$().piroBox_ext({
		piro_speed : 700,
		bg_alpha : 0.5,
		piro_scroll : true 
	 }); 

});

