$(document).ready(function(){ 
	
	$('.opac').mouseover(function(){
		$(this).animate({ "opacity": 1 }, 200);
	}); 
	
	$('.opac').mouseout(function(){
		$(this).animate({ "opacity": 0.5 }, 200);
	});
	
	$('.opac').animate({ "opacity": 0.5 }, 200);
	
	// //prepend span tag
	$(".photo a").prepend("<span></span>");
	
	$("a.group").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
	
   $('#slideshow').cycle({
    fx: 'fade',
    prev: '#prev',
    next: '#next',	
    speed: 300,
    speed: 2500, 
    timeout: 3000

	});
	
	$(".contact").fancybox({
		'scrolling'		: 'no',
		'titleShow'		: false,
		'onClosed'		: function() {
			$("#contact_error").hide();
		}
	});	
});

