$(document).ready(function(){
	$("#resume").hide();
	$(".projects .slider:not(:first)").hide();
	
	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
    	$(pager).find('a').removeClass('activeLI').filter('a:eq('+currSlideIndex+')').addClass('activeLI'); 
	}; 
	
	$(".projects").cycle({
	    fx:    'scrollHorz',
	    delay: -2000,
		timeout: 5000,
	   	next:   '#next', 
    	prev:   '#prev',
		pager:  '#nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			return '<li><a href="#"></a></li>'; 
		} 
	});
	
	$("#pause").click(function() {
		$(".projects").cycle('pause');
		$("#pause").hide();
		$("#resume").show();
		return false;
	});
	
	$("#resume").click(function() {
		$(".projects").cycle('resume');
		$("#resume").hide();
		$("#pause").show();
		return false;
	});

/* Fancybox */
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true 
	});	

		
	
});
