$(document).ready(function($){
	
	$(function(){
	    $('#billboard img:gt(0)').hide();
	    setInterval(function(){
	      $('#billboard :first-child').fadeOut()
	         .next('img').fadeIn()
	         .end().appendTo('#billboard');}, 
	      3000);
	});
	
	//E-mail cover-up
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});

	/* This is basic - uses default settings */
	$("a.fancybox").fancybox();

	
	/* Using custom settings */
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	
	// Corners
	$('.intro').corner("tl 10px");
	$('#contact').corner("br 20px");
	$('.company').corner("br 20px");
	$('.person').corner("tr 20px");
	
	/* Apply fancybox to multiple items */
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});

});
