$(document).ready(function(){
	// auto close for range alert & onclick close
	$("#rangeAlertClose").click(function(){
		$(this).parent().hide();
	});
	
	setTimeout(function() {
		$("#rangeAlert").hide()
    }, 30000);
});
