$(function(){
	$('.lks').click(function(){
		var lid = this.id;
		$('#likes').html('<h3>Like this site?</h3><img src="/img/load.gif" alt="Loading..."/>');
		$.post('/likes', { 'like': lid }, function(){
			var loc = new String(window.location);
			window.location = loc.substr(0, loc.indexOf('/', 8))+'/comments';
		});
	});
});