function countVote(href){
	id_start = href.indexOf('id=');
	id = href.substring(id_start,href.length);
	id = id.replace('id=','');
	$.ajax({
		url: 'counter.php?id=' + id
	})
}

$(document).ready(function(){
	$("a[rel='colorbox']").colorbox();
});
