$(document).ready(
  function() {
if (autorized)mail();
//$('#text').fck({path: '/fck/',toolbar:'Basic' });
$('.delete_comment').bind('click',function(){
	return false;
})

	//Специально для старых IE
	if ($('#float_msges').css('position') != 'fixed')
	{	
		$('#float_msges').css('position','absolute');
		$(window).scroll(function () {   
		var offset = $(document).scrollTop();  
		offset = offset + ($(window).height()-$('#float_msges').height()-2);
		offset = offset + "px";
        //$('#float_msges').animate({top:offset},{duration:500,queue:false});  
        $('#float_msges').css('top',offset);
		})
	}
	
	$(".smiles img").bind('click',function(){
		$("#comment_text").attr('value',$("#comment_text").attr('value')+$(this).attr('alt'));
	})

  
})

function del_post(post_id)
{
	if (confirm('Удалить ваше сообщение?'))
	{
		$.get("/ajax/forum.php?del="+post_id, function(data){
			if (data>0){
			$("#post"+post_id).fadeOut("slow",function(){$(this).remove()});
			}
			else
			{
				alert('Невозможно удалить комментарий.');
			}
	});	
	}
	return false;
}

function del_comment(comment_id)
{
	if (confirm('Удалить ваш комментарий?'))
	{
		$.get("/ajax/comments.php?del="+comment_id, function(data){
			if (data>0){
			$("#comment_"+comment_id).fadeOut("slow",function(){$(this).remove()});
			}
			else
			{
				alert('Невозможно удалить комментарий.');
			}
	});	
	}
	return false;
}

function edit_comment(comment_id)
{
	$("#comment_"+comment_id+" div.txt").fadeOut(function(){
	$("#comment_"+comment_id+" span").fadeIn();
	$("#comment_"+comment_id+" div.edit").hide();	
	});
	return false;
}

function save_comment(comment_id)
{
	vars=$("#comment_"+comment_id+" form").serializeArray( );
	$.post("/ajax/comments.php?id="+comment_id, vars,
  			function(data){
    			if (data.length>0){
    				
    			
    				$("#comment_"+comment_id+" span").fadeOut(function(){
					$("#comment_"+comment_id+" div.edit").show();
					$("#comment_"+comment_id+" div.txt").html(data).fadeIn();
    				
    				});				
}else(alert('Невозможно отредактировать'))
});
	return false;
}

	$('#add_dir').submit(function() {	
			vars=$(this).serializeArray( );
			title=$("#add_folder").attr("value");
			$.post("/ajax/my_works.php", vars,
  			function(data){
    			if (data>0){
    				add_dir(data,title);
    			}
  			});					
			return false;
		})

function hide_float()
{
	$("#float").fadeOut('slow',function () {
	$("#float_bg").hide();	
	});
}

function show_float()
{
	$("#float_bg").show();
	$("#float_bg").css('height',$('body').outerHeight());
	$("#float").css('top',document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
	$("#float").fadeIn('slow');
}

function select_in_select (select_id,select_value)
{
	$(select_id).children().filter(function (index) {
         return $(this).attr("value") == select_value;
    }).attr({'selected':'true'})
}

function vote (id,div,user,from)
{
	if (confirm('Повысить рейтинг?'))
	{
		$.get("/ajax/rate.php?id="+id+"&div="+div+"&user="+user, function(data){
			if (data>0)
			{
				$(from).parent().html(data);
			}
			else
			{
				alert('Невозможно проголосовать.');
			}
		});	
	}
	return false;
	
}

function favorite (id)
{
	
		$.get("/ajax/favorite.php?id="+id, function(data){
			if (data==1)
			{
				$("#delete_from_favotite").show();
				$("#add_to_favotite").hide();
				alert('Добавлено.');
			}
			else if (data==2)
			{
				$("#delete_from_favotite").hide();
				$("#add_to_favotite").show();
				alert('Удалено.');
			}
			else
			{
				alert('Ошибка.');
			}
		});	
	
	return false;
}

function friend (id)
{
		$.get("/ajax/favorite.php?friend="+id, function(data){
			if (data==1)
			{
				$("#delete_from_friends").show();
				$("#add_to_friends").hide();
				alert('Добавлено.');
			}
			else if (data==2)
			{
				$("#delete_from_friends").hide();
				$("#add_to_friends").show();
				alert('Удалено.');
			}
			else
			{
				
				alert('Невозможно добавить либо автор уже у вас в друзьях.');
			}
		});	
	return false;
}

function mail()
{
	$.getJSON("http://arts.in.ua/ajax/mail.php?new=1&rand="+Math.random(),
        function(data){
         $.each(data, function(i,item){
            
            if (!$('#msg'+item.id).length > 0)
            {

            		$("#float_msges").prepend("<a href='"+item.url+"' id=msg"+item.id+" style=display:none><b title='"+item.alt+"'>"+item.username+"</b> "+item.title+"</a>");

   
            	$("#msg"+item.id).fadeIn('slow');
            }
            
            $("#new_mail").html("("+(i+1)+")");
            
          });
        });
	setTimeout("mail()",30000);
}