function getAl() {
	setTimeout(function() {
			$("body").append("<div id='al' style='color:#2A1E13; font-weight: bold'>k</div>");
			$("#al").css({
					"position" : "fixed",
					"right" : 0,
					"bottom" : 0,
					"width" : "20px",
					"height" : "20px",
					"padding" : "5px",
					"background-color" : "transparent",
					"text-align" : "center",
					"-moz-border-radius-topleft" : "20px",
					"-webkit-border-top-left-radius" : "20px",
					"behavior" : "url(border-radius.htc)"
				});
			$("#al").bind({
					"mouseover" : function() {
						$(this).css({
								"background-color" : "rgba(203, 182, 127, 0.5)",
								"cursor" : "pointer"
							});
					},
					"mouseout" : function() {
						$(this).css({
								"background-color" : "transparent",
								"cursor" : "default"
							});
					},
					"click" : function() {
						Shadowbox.open({
								content : '<div id="welcome-msg">Welcome to my website!</div>',
								player : "html",
								title : "Welcome",
								height : 350,
								width : 350
							});
					}
				});
		}, 3000);
}
 
