Behaviour.register({
	'#Post-to-blog' : function(e){
		var f = $('#Post-to-blog #Form');
                        
		var dialog = new fx.Combo(f, {fade:true, height:true, onComplete:function(){try{$('.post_title').focus();}catch(e){}}});

		if (f.style.display=='none'){
			dialog.hide();
			f.style.display = "block";
		}

		e.onclick = function(){
			dialog.toggle();
			return false;
		}
	}
});