<!DOCTYPE html>
<html>
<head>
	<script src="jquery-1.7.1.js"></script>
	<style>
		html, body, div {
			margin: 0;
			padding: 0;
		}
		body {
			background-image: url('../images/alpha_checker.png');
		}
		#icon {
			width: 173px;
			height: 173px;
			border: 2px solid #222222;
			background-repeat: no-repeat;
			background-size: 90% 90%;
			background-position: center;
		}
	</style>
</head>
<body>
	<div id="icon">
	</div>
	<script>
		function setAssetIcon(sourceURL) {
			$("#icon").css("background-image", "url(" + sourceURL + ")");
		}
		function removeAssetIcon() {
			$("#icon").css("background-image", "");
		}
	</script>
</body>
</html>
