$(document).ready(function(){
	$(".qimg").click(function(){
		var t=$(this);
		att = t.attr('src');
		
		if(att.length == 40) // off
		//if(att == 'http://www.wijzijnvoetbal.nl/forum/patriarch_usa/buttons/multiquote_off.gif')
		{
			$(this).attr('src','http://www.wijzijnvoetbal.nl/forum/patriarch_usa/buttons/multiquote_on.gif');
		}
		else
		{
			$(this).attr('src','http://www.wijzijnvoetbal.nl/forum/patriarch_usa/buttons/multiquote_off.gif');
		}
	});
});


function addQuote(msgid)
{
	$('#qtext').load('mq_ajax.php?action=add&msgid=' + msgid);
}

/*
function getQuotes()
{
	$.get('mq_ajax.php?action=quotes', function(data) {
				$('textarea#vB_Editor_QR_textarea').val(data);
				
				$.get('mq_ajax.php?action=remove', function(data) {
		$('.qmsg').html('<img border=0 class=\"swapImageClick {src: \'http://www.vblforum.nl/bullit/patriarch_usa/buttons/multiquote_on.gif\'}\" src=\"http://www.vblforum.nl/bullit/patriarch_usa/buttons/multiquote_off.gif\" alt=\"\" />');
		$('#qtext').html('');
	});
	});
	
	
	
}
*/

function getQuotes()
{
	var text = $('textarea#vB_Editor_QR_textarea').val();
	
	$.get('mq_ajax.php?action=quotes', function(data) {
				$('textarea#vB_Editor_QR_textarea').val(text + data);
				
	$.get('mq_ajax.php?action=remove', function(data) {
		$('.qimg').attr('src','http://www.wijzijnvoetbal.nl/forum/patriarch_usa/buttons/multiquote_off.gif');
		$('#qtext').html('');
	});
	});
	
	
	
}

function getQuote(msgid)
{
	var text = $('textarea#vB_Editor_QR_textarea').val();
	
	$.get('mq_ajax.php?action=getquote&msgid=' + msgid, function(data) {
				$('textarea#vB_Editor_QR_textarea').val(text + data);
				
				$('textarea#vB_Editor_QR_textarea').focus();

	});
	
}

function removeQuotes()
{
	$.get('mq_ajax.php?action=remove', function(data) {
				location.reload();
	});
}


