$(document).ready(function() {

	$("#welcome").overlay({
	
			top: 150,
			expose: { color: '#010101',loadSpeed: 200, opacity: 0.7},
			closeOnClick: false,
			api: true
	}).load();
	});

$(document).ready(function(){
		$('.close').animate({opacity : 0.8 });
		
		$('.close').hover(function(){
			$(this).stop().animate({"opacity": 1 });
		},function() {
			$(this).stop().animate({"opacity": 0.8 });
		});
		
	});
