$(document).ready(function() {

	/* Apply fancybox to multiple items */
	$(".thumb a[rel=group]").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'width'			: '766px',
		'overlayShow'	:	false,
		'titlePosition'	: 'inside'
	});
	
	/* projects page */
	$(".project").hover(
		function(){
			$(this).addClass("selected");	
		},
		function(){
			$(this).removeClass("selected");	
		}
	);
	$("#projects a[rel=group]").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'width'			: '766px',
		'overlayShow'	:	false,
		'titlePosition'	: 'inside'
	});
	
});
