$(document).ready(function() {
	$("#logo").click(function() {
		document.location.href='/';
	});

	if ($(".searchbox").length>1) {
		var w1 = $(".searchbox:first").height();
		var w2 = $(".searchbox:last").height();
		if (w1>w2) {
			$(".searchbox:last").height($(".searchbox:first").height());
			$(".countbox").height($(".searchbox:first").height()-2);
		} else {
			$(".searchbox:first").height($(".searchbox:last").height());
			$(".countbox").height($(".searchbox:last").height()-2);
		}

	}

});
