function goshopping() {
	window.location = "?page=shop&bg=default/londen 1&look=1153,1155,2620,2622,3410,3094,3245,3340,2853,2192";
}
var objFixIeTooltip = {
	// methods
	init : function() {
		if (!document.getElementById || !document.getElementsByTagName) return;
		var isIE = navigator.userAgent.indexOf("MSIE");
		if (isIE < 1) return;
		// find the image(s) - tweak to your needs
		var elContainer=document.getElementById("render-mimic");
		if (!elContainer) return;
		var elImg=elContainer.getElementsByTagName("img")[0];
		if (!elImg) return;
		// if there isn't already a title attribute set on the image, set the title attribute to blank, thus overriding the alt tooltip behaviour
		// use == '' because IE always thinks title is a string (cannot distinguish between undefined and empty attributes)
		if (elImg.getAttribute('title') == '') elImg.setAttribute('title','');
	}
};
addLoadEvent(objFixIeTooltip.init);