
lovePic = function( id ) {
	vote( id, 1 );
}

nextPic = function( id ) {
	vote( id, 0 );
}

vote = function( id, value ) {
	url = 'http://www.cornify.com/pic/vote/'+id+'/'+value;
	new Ajax.Request(url, {
		method: 'get',
		onSuccess: function(result){
			window.location.href = "http://www.cornify.com/unicornpictures/" + result.responseText + '#pic';
		}
	});	
}