jQuery.fn.floatdiv=function(D){var E=false;var F={};var G=navigator.userAgent.toLowerCase();var B;(B=G.match(/msie ([\d.]+)/))?F.ie=B[1]:0;if(F.ie&&F.ie=="6.0"){E=true}var A,C;if(self.innerHeight){A=self.innerWidth;C=self.innerHeight}else{if(document.documentElement&&document.documentElement.clientHeight){A=document.documentElement.clientWidth;C=document.documentElement.clientHeight}else{if(document.body){A=document.body.clientWidth;C=document.body.clientHeight}}}return this.each(function(){var K;var M=$("<div></div>");var J=-1;if(D==undefined||D.constructor==String){switch(D){case ("rightbottom"):K={right:"0px",bottom:"0px"};break;case ("leftbottom"):K={left:"0px",bottom:"0px"};break;case ("lefttop"):K={left:"0px",top:"0px"};J=0;break;case ("righttop"):K={right:"0px",top:"0px"};J=0;break;case ("middletop"):K={left:A/2-$(this).width()/2+"px",top:"0px"};J=0;break;case ("middlebottom"):K={left:A/2-$(this).width()/2+"px",bottom:"0px"};break;case ("leftmiddle"):K={left:"0px",top:C/2-$(this).height()/2+"px"};J=C/2-$(this).height()/2;break;case ("rightmiddle"):K={right:"0px",top:C/2-$(this).height()/2+"px"};J=C/2-$(this).height()/2;break;case ("middle"):var L=0;var I=0;L=A/2-$(this).width()/2;I=C/2-$(this).height()/2;J=I;K={left:L+"px",top:I+"px"};break;default:D="rightbottom";K={right:"0px",bottom:"0px"};break}}else{K=D;alert(K.bottom);var H=K.top;if(typeof(H)!="undefined"){H=H.replace("px","");J=H}}if(E){if(J>=0){M=$('<div style="top:expression(documentElement.scrollTop+'+J+');"></div>')}else{M=$('<div style="top:expression(documentElement.scrollTop+documentElement.clientHeight-this.offsetHeight);"></div>')}}$("body").append(M);M.css(K).css({position:"fixed",z_index:"999"});if(E){M.css("position","absolute");$("body").css("background-attachment","fixed").css("background-image","url(n1othing.txt)")}$(this).appendTo(M)})};
