var contactActive = 0;

$(document).ready(function(){	
	
	// easySlider init
	$("#slider").easySlider({
		continuous: true,
		prevText: '',
		nextText: ''
	});
		
	// FancyBox init
	$(".group").fancybox({
			
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayColor': '#000',
		'onStart' : lightboxStart,
		'onClosed' : lightboxClose

	});
	
});

// hide slider icons when fancybox is active
function lightboxStart(){ 
		
	// hide slide navigation buttons
	$("#nextBtn, #prevBtn").hide(); 
		
	// hide contact form if visible
	if (contactActive){ $("#contact-form").hide().css({ top: "-=485px" }); }
		
}
function lightboxClose(){ 
		
	// show slider navigation buttons & contact form
	$("#nextBtn, #prevBtn").show(); 
	if (contactActive){ $("#contact-form").show(); }
		
}
