/*
function adjustLayout()
{
	alert('adjustLayout');
	var mHeight = $('#menu_wrapper').height();
	var cHeight = $('#container').height();
	var lHeight = $('.lowermenuwrapper').height();
	mHeight +=lHeight + 20;
	//var mHeight = Math.Max(mHeight, cHeight);
	if (mHeight > cHeight)
	{
		$('#container').height(mHeight);
		$('#menu_wrapper').height(mHeight);
	}
	else
	{
		$('#menu_wrapper').height(cHeight);
	}
	
	if($.browser.webkit)
	{
		var lc = $('.logincell');
		var width = lc.width()+4;
	}
}


*/
$( function()
{
	$('#hstext').bind('change', function(event) {
		$('form[name=hsearchform]').get(0).submit();
	});
}
);
