/**
 * Tja
 */



$(function() {
	if( $('#entry_image a').length > 0 )
	{
		$('#entry_image a').lightBox({fixedNavigation:true});
	}
});






function vote(eid)
{
	$.ajax({
		   type: "POST",
		   url: "/ajax/vote",
		   data: "eid="+eid,
		   success: function(msg){
			 if(msg=="1")
			 {
				 alert('Tack för din röst');
			 }
			 else
			 {
				 alert('Du har redan röstat på det här bidraget idag');
			 }


		   }
	});
}


