jQuery(document).ready(function() {
	jQuery('.record_click').click(function() {
		var url = this.href;
		if (url) {
		    jQuery.getJSON('/event/war/addhits.php?url='+url);
		}
	    });
    });

function sendMsg()
{
    var data = jQuery('#msgform').serializeArray();
    jQuery.post('/event/war/jq.php?type=sendmsg',
	    data, function (d) {
	        alert(d.message);
		if (!d.error) {
		    window.location.href = '/event/war/story.php';
		}
	    }, 'json');
}

function votePK(option)
{
    jQuery.post('/event/war/jq.php?type=sendpk',
	    {'option' : option,
	     'dc' : jQuery('#dc').val()
	    }, function (d) {
		 alert(d.message);
		 if (!d.error) {
		     window.location.reload();
		 }
	     }, 'json');
}
