$(document).ready(function() {

	$("#ageVerify").overlay({
	
			top: 250,
			expose: { color: '#010101',loadSpeed: 200, opacity: 0.7},
			closeOnClick: false,
			api: true
	}).load();
	});

$(document).ready(function() {  
           $('.close, #no').append('<span class="rollover"></span>')
		   $('.close .rollover, #no .rollover').css("filter","alpha(opacity=00)");
		   $('.close, #no').hover(function() {
	       
		// Stuff that happens when you hover on + the stop()
		$('.rollover', this).stop().animate({
			'opacity': 1
			}, 200,'easeOutSine')
	
	},function() {
	
		// Stuff that happens when you unhover + the stop()
		$('.rollover', this).stop().animate({
			'opacity': 0
			}, 200, 'easeOutQuad')
	
	})
		   });
