function o(e, i) {
	e = $(e);
	src = e.attr("src");
	src2 = src.split("/");
	src2 = src2.reverse();
	img = src2[0];
	src = src.substr(0, src.length - img.length) + i;
	e.attr("src", src);
}

$(document).ready(function() {
	
	if($.browser.name == "firefox" && $.browser.versionNumber < 3.6) {
		$("div#busca-topo input[type=text]").css({"height" : "24px", "padding" : "10px 0 0 12px"});
	}
	
});
