function dom_init() {
  
  sizeBar();

	$('.col-navi > ul > .haschildren > a').click(function(){
		this.blur();
		$(this).next().slideToggle('fast');
		return false;
	});
	
  
	$('#tagcloud li').click(function(){
	  $('#ajaxSearch_input')[0].value = $(this).text();
	  $('#ajaxSearch_input')[0].focus();
	  liveSearchReq();
	});

}

function sizeBar() {
  var height = $('#wrapper').height();
  //$('.col-logo').height(height);
	$('.col-navi').height(height-160);
}

window.onload = sizeBar;
  