/* Author: 
	Jana and Keith Harper
	Duo Creative LLC
*/


$(document).ready(function() {



	// Fade in the Detections Demo Labels when scrolled to Demo
	// Create your event handlers
	function bullseyeEnter() {
	    $('.demo_label').fadeIn('slow');
	    $('#detections_demo').fadeTo('slow', 1);
	}
	
	function bullseyeOut() {
	    $('.demo_label').css('display', 'none');
	    $('.demo_label').css('display', 'none');
	    $('#detections_demo').fadeTo('slow', 0.25);
	}
	// Inside DOM-Loaded event
	$('#detections_demo')
		// Bind events to your handlers
		.bind('enterviewport', bullseyeEnter)
		.bind('leaveviewport', bullseyeOut)
		// Initialize the plug-in
	.bullseye({offsetTop: 300});
	


});






















