$(document).ready(function() {
						   
// This is more like it!
$("#search_wrapper").css({ width: 0, height:0, position: "fixed" }, 500);
//$("#search_toggle").css({ position: "fixed" }, 500);

$("#search_toggle").toggle(
    function() {
		$("#search_wrapper").css({height:96},200).animate({ width: 310 }, 500);
    },
	function() {
		$("#search_wrapper").animate({ width: 0 }, 500);
    }
);


});
