$(window).scroll(function() {
	$('#popup').animate({top:$(window).scrollTop()+250+"px" },{queue: false, duration: 350});
	$('#mask').animate({top:$(window).scrollTop()+"px" },{queue: false, duration: 0});
});



$(document).ready(function() {

	$('#bellIt').mouseover(function(){
			
			 var thissound= document.getElementById('bell');
				thissound.Play();
	});
	
});
