$(document).ready(function(){
	$('.comment_get_vote').live('click', function(){
		var get_id = $(this).attr('id');
		var id_info = get_id.split('_');
		
		$.post('/insert_vote.php?type='+id_info[1]+'&id='+id_info[2], function(data){						
			var rating = $('#comment_vote_rating_'+id_info[1]+'_'+id_info[2]).text()
			rating = parseInt(rating) + 1;
			$('#comment_vote_rating_'+id_info[1]+'_'+id_info[2]).html(rating);		
		
			if(id_info[1] == 'u')
			{
				$('#comment_u_'+id_info[2]).removeClass('comment_get_vote vote_up_img').addClass('vote_up_img_disabled_select');
				$('#comment_d_'+id_info[2]).removeClass('comment_get_vote vote_down_img').addClass('vote_down_img_disabled');
			}
			else
			{
				$('#comment_u_'+id_info[2]).removeClass('comment_get_vote vote_up_img').addClass('vote_up_img_disabled');
				$('#comment_d_'+id_info[2]).removeClass('comment_get_vote vote_down_img').addClass('vote_down_img_disabled_select');
			}
		});		
	});
	
	$('.comment_reply_link').live('click', function(){
		var get_id = $(this).attr('id');
		var id = get_id.split('_');
		var text = jQuery.trim($('#comment_body_'+id[2]).text());
		
		$('#comment_hidden_info').remove();		
		$('<div id="comment_hidden_info"><div class="blockquote">'+text+'</div><input type="hidden" value="'+id[2]+'" name="parent_id"></div>').insertAfter('#comment_reply_info_box');
	});
		
	//show "report this to us" popup
	$('#show_report_popup').click(function(e) {
		//Get the screen height and width
		var maskHeight = $(document).height()+300;
		var maskWidth = $(window).width();

		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
              
		//Set the popup window to center
		$('#boxes_spy').css('top',  winH/2-500/2);
		$('#boxes_spy').css('left', winW/2-500/2);
		
		//transition effect
		$('#boxes_spy').fadeIn(1);
	});
	
	//if mask is clicked
	$('#mask_spy').click(function () {
		$(this).hide();
		$('#boxes_spy').hide();
	});
	
	$('#popup_close').click(function () {	
		$('#boxes_spy').hide();
		$('#mask_spy').hide();
		$('#boxes_call').hide();
	});
	
	//Call popup	
	$('.show_call_popup').click(function(e) {
		//Get the screen height and width
		var maskHeight = $(document).height()+300;
		var maskWidth = $(window).width();

		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
              
		//Set the popup window to center
		$('#boxes_call').css('top',  300);
		$('#boxes_call').css('left', winW/2-500/2);
		
		//transition effect
		$('#boxes_call').fadeIn(1);
	});
	
	$('.show_call_popup').click(function () {
		$('#boxes_call').hide();
		$('#boxes_call').show();		
	});
	
	$('.close_call_popup').live('click', function(){
		$('#boxes_call').hide();	
	});
	
});

