$(document).ready(function(){

		$('#indexcarousel').jcarousel({
			scroll: 1,
			visible: 2
		});
		
		$('#thumbcarousel').jcarousel({
			visible: 1
		});
		
		$('#projectcarousel').jcarousel({
			visible: 2,
			scroll: 2
		});
		
	
		
		$(".thumb, .thumb_220, .thumb img").css({
			opacity : 0.6	
		});
		
		$(".thumb, .thumb_220, .thumb img").mouseenter(function(){
		$(this).animate({
			opacity : 1				
			});		
		});
		
		$(".thumb, .thumb_220, .thumb img").mouseleave(function(){
			$(this).animate({
				opacity :0.6
			});			
		});


		function formatTitle(title, currentArray, currentIndex, currentOpts) {
			return '<div id="fancy-title">' + (title && title.length ? '<h1>' + title + '</h1>' : '' ) + (currentIndex + 1) + ' / ' + currentArray.length + ' Images' + '</div>';
		};
		
		$(".fancy").fancybox({
			'margin': 0,
			'padding': 0,
			'opacity': false,
			'overlayColor': '#fff',
			'titlePosition': 'outer',
			'showNavArrows': true,
			'titleShow': true,
			'titleFormat': formatTitle,
			'onStart': function() { $('#overlay').fadeIn(); },
    		'onClosed': function() { $('#overlay').fadeOut(); }
		});
		
		
		
});		
