$(document).ready(function(){
var h_max;
var h1 = $('#sidebar').height();
var h2 = $('#content').height();
if (h1 >= h2)
    h_max = h1 + 40;
else
    h_max = h2 + 40;

$('#sidebar').height(h_max);
$('#content').height(h_max);

/*var h_max_webkit = h_max + 200;

/*$('#content').css('-webkit-height', h_max_webkit.'px');
$('#sidebar').css('-webkit-height', h_max_webkit.'px');

 
 
var zzz = $('#container').height();
xxx = zzz + 40;
$('#container').height(xxx);
==== */

$('#searchclick').click(
function() 
{ 
	$(this).css("display", "none");
	$('#searchfield, #cntnt01searchinput').focus();
});

/* ==== */

$("#bottom ul li:last-child a").css("border", "none");


});

