// create shim to hide selects in IE
function shimmyShim(object)
{
	if (navigator.userAgent.indexOf("MSIE") != -1)
	{
		var iframeShim = document.createElement("<iframe scrolling='no' frameborder='0' id='shim"+object.id+"' "+
		                                        "style='position:absolute; top:0px;"+
		                                        "left:0px; display:block; "+
		                                        "width: 100%; z-index:-1;' src='javascript:false'><iframe>");
		iframeShim.style.height = object.offsetHeight;
		iframeShim.style.filter='progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)';
		var result = object.appendChild(iframeShim);
	}
}

