$(document).ready(function(){
	Cufon.replace('div.col h2');
	
	$("#login input[name=password]").focus(function(){
		$('<input type="password" value="" name="password" />').insertBefore(this);
		$(this).remove();
		$("#login input[type=password]").focus();
	});
	
	if ($("#content div.col1").height() > $("#content div.col2").height())
		$("#content div.col2").height($("#content div.col1").height());
	else if ($("#content div.col2").height() > $("#content div.col1").height())
		$("#content div.col1").height($("#content div.col2").height());
});
