function comment(id) {
	
	//$('posting_msg').show();$('posting_msg').highlight({duration: 4});$('posting_msg').fade({delay:3});
	
	var body = $('post_comment').serialize();
	
	new Ajax.Request('../comment.php?'+body,{method: 'get',onCreate:function(request)
            {$('sending_msg').show();},onComplete:function(request){new Ajax.Updater('comments','../comments.php?id='+id,{method: 'get'});
$('sending_msg').hide();$('post_comment').reset();}});
}


function login(id) {
	
	$('login_submit').update('Logging in...');
	var login = $('id').serialize();
	new Ajax.Request('../user_login_ajax.php?'+login, {method:'get'});
		
}