
 	jQuery.event.add(window, "load", resizeMiddle);
        jQuery.event.add(window, "resize", resizeMiddle);

        function resizeMiddle() {

		var h = $(window).height();

		var dh = $(document).height();

		var f = dh - 40 ;
		$("#footer").css('top', f);
		

	//	$("#footer").css('margin-top', );

        //    document.write(dh);
		if (dh > h) {
			$(".wrapper").css('height', dh);
			$(".wrapper").css('min-height', dh);

		}
		else
		{
			h = h + 4;
			$(".wrapper").css('height', h);
			$(".wrapper").css('min-height', h);
			
		}	

 
        }
