$(function(){
	// set the fancybox
	$('.btn-link').fancybox({
			width: 700,
			height: 394,
			type: 'iframe',
			overlayOpacity: .85,
			overlayColor: '#000',
			titlePosition: 'inside',
			title: '<strong>PYLIT</strong>:  Design, Direction, Motion Graphics, 3D<br/>Venice, CA. 424.268.4235'
	});
	
	// enter hover
	var fade_speed = 200;
	$('.btn-link').hover(function() {
		$(this).find('.btn-enter').stop(true, true).fadeOut(fade_speed);
	}, function() {
		$(this).find('.btn-enter').fadeIn(fade_speed);
	});
	
});

// on full load (bg image)
$(window).load(function() {
	// wait 300ms, then fade in
	var t = setTimeout(function(){
		$('.btn-enter').fadeIn(200, function(){
			// make the rollover state visible
			$('.btn-enter-over').show();
		});
	}, 300);
});
