/* CREDITS
 * ----------------------------------------------------------
 * Title:		Inventis Marathon - Main JavaScript file
 * Author:		Tom Claus <tom@inventis.be>
 * Date:		18/11/2010
 * ----------------------------------------------------------
 * Inventis - Web Architects - We design the Web!
 * www.inventis.be
*/
$(document).ready(function(){

	/* FancyBox */
	$("a.lightbox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic'
	});
	
	$("a#loginbtn").click(function(e) {
        e.preventDefault();
		$('.loginscreen').toggle('fast', function() {
		});
	});
	
	$("a.close").click(function() {
		$('.loginscreen').hide('fast', function() {
		});
	});

});
