$(function() {
	if($("#login").length) {
		$("input#password").focus();
	} else if($("#post_form").length){
		$("div.body").hide();
		$("a.toogle_body").click(function() {
			$("div.body").toggle(100);
			return false;
		});
	} else if ($("#new_comment").length) {  
		$("#comment_url").parent().hide();
		$("#comment_form, code").hide();  
		$("a.add_comment, a.toogle_comment").click(function() {
			$("#comment_form").toggle(100);
			return false;
		});
		$("a.toogle_textile").click(function() {
			$("code").toggle();
			return false;
		});
	}
});