 (function(){
	var erogoo_sticker = document.getElementById('erogoo-sticker');
	erogoo_sticker.style.zIndex = 99;
	erogoo_sticker.style.position = 'absolute';
	erogoo_sticker.style.top = 0;
	erogoo_sticker.style.left = 0;
	erogoo_sticker.style.display = 'block';
	erogoo_sticker.style.height = '120px';
	erogoo_sticker.style.width = '120px';
	var img = document.createElement('img');
	img.setAttribute('src', erogoo_sticker_src);
	img.setAttribute('alt', 'エログランキング');
	img.setAttribute('title', 'エログランキング');
	img.style.border = 'none';
	img.style.height = '120px';
	img.style.width = '120px';
	var anchor = document.createElement('a');
	anchor.setAttribute('href', 'http://erogoo.souzer.com/');
	anchor.setAttribute('target', '_blank');
	anchor.appendChild(img);
	erogoo_sticker.appendChild(anchor);
	
	if (!/MSIE/.test(navigator.userAgent)) return;
	var arVersion = navigator.appVersion.split("MSIE");
	var version = parseFloat(arVersion[1]);
	
	if (version >= 5.5 && version < 7 && document.body.filters)  {
		var imgID = (img.id) ? "id='" + img.id + "' " : "";
		var imgClass = (img.className) ? "class='" + img.className + "' " : "";
		var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' ";
		var imgStyle = "display:inline-block;" + img.style.cssText;
		if (img.align == "left") imgStyle = "float:left;" + imgStyle;
		if (img.align == "right") imgStyle = "float:right;" + imgStyle;
		if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle;
		var strNewHTML = "<span " + imgID + imgTitle
		+ " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
		+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
		+ "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>";
		erogoo_sticker.innerHTML = strNewHTML;
	}
 })();