function Vote(){

    this.init = function(){
    	(function($) {
    	})(jQuery);
    }
    
    this.voteVideo = function(videoId){
    	var videoVotesNumber = parseInt($('.videoVotes').text().trim());
    	videoVotesNumber++;
		$.post("/video-vote-ajax", { videoId: videoId },
		   function(data){
			  $('#voteButton_'+videoId).html('<a href="javascript:shareVote();" id="shareVideo_'+videoId+'"><img src="/website/static/source/img/voted.png" class="votedButton" /></a>');
			  $('#voteButtonSmall_'+videoId).html('<a href="javascript:shareVote();" id="shareVideoSmall_'+videoId+'"><img src="/website/static/source/img/votedSmall.png" class="votedButtonSmall" /></a><span class="smallVoteText">Teile das Video und bringe auch deine Freunde dazu für das Video abzustimmen!</span>');
		   	  $('.videoVotes').html('<img class="videoInfoPictoAbove" src="/website/static/source/img/votes_picto.gif"><br>'+videoVotesNumber);
		   }
		);
    }

    var self = this;
}

var vote = new Vote();

(function($) {
	$(document).ready(function(){
		vote.init();
	});

})(jQuery);
