$(document).ready(function() {

	$("#ageVerify").overlay({
	
			top: 250,
			expose: { color: '#000',loadSpeed: 200, opacity: 0.4},
			closeOnClick: false,
			api: true
	}).load();
	});

$(document).ready(function(){
		$('.close').animate({opacity : 0.6 });
		
		$('.close').hover(function(){
			$(this).stop().animate({"opacity": 1 });
		},function() {
			$(this).stop().animate({"opacity": .6 });
		});
		
		
		$('#no').animate({ opacity : 0.6 });
		
		$('#no').hover(function(){
			$(this).stop().animate({"opacity": 1 });
		},function() {
			$(this).stop().animate({"opacity": 0.6 });
		});
		
	});