/*	A Soho+ Library*/var soho = {	createImage:function(src, width, height)	{		var img = new Image();		img.src = src;		img.width = width;		img.height = height;		img.border = 0;		return img;	},			info:	{		isIE:('function' == typeof window.ActiveXObject),		isSafari:-1!=navigator.appVersion.indexOf('afari'),		window:		{			width:document.documentElement.offsetWidth || document.body.offsetWidth,			height:self.innerHeight || document.documentElement.clientHeight || document.body.clientHeight		}	}}
