$(function()
{
	$('#picoftheday a').lightBox();
	$('.slide_img a').lightBox();
	$('.lightbox').lightBox();
	 $("#pvpTable").tablesorter(); 
	 $(".tablesorter.sort").tablesorter();
	 $(".profile_players").tablesorter({sortList: [[3,1],[0,0]]}) ;
	 
	 
});


		function addComment(modul,id)
		{
			content = $_("comment_content").value;
		    //data = 'content='+content+'&affects={/literal}{$img_info.id}{literal}&module=' + modul;
			data = 'content='+content+'&affects='+ id +'&module=' + modul;
			$.ajax({
				  url: "saveComment.php",
				  type: "POST",
				  data: data,
				  success: function(msg){
					 $("#leave_comment").hide();
					 alert(msg);
					 $("#table_comments").append('<tr> <td style="padding-bottom:10px;padding-right:5px;" colspan="2"><b>You</b> wrote:<br />'+content+'</td></tr>');
				  }
			   }
			);
						
		}
		
function showDialog(show)
{
	if(show==1){
			$(".dialog").dialog({
				bgiframe: true,
				height: 160,
				modal: true
			});
	}
			
}
$(function() {
		$(".tabs").tabs().find(".ui-tabs-nav").sortable({axis:'x'});
	});
