



/*
 * ################ START ISSUE_CONTENT START ################ 
 */

var classIssueContent = function() {	var self = this;	var breaker = false;	this.moduleName = 'issue_content';	this.init = function() {			//--> PUBLIKUS <--//		this.initVote();		}		//--> PUBLIKUS <--//	//Szavazás megvalósítása	this.initVote = function() {		var stars = $("#vote-block.can-vote img");		stars.mouseover(function() {			var pos = jQuery.inArray($(this)[0], stars);			for(var i=0;i<=stars.length;i++) {				var oldSrc = $(stars[i]).attr('src'); $(stars[i]).attr('data-old-src', oldSrc);				if( i<=pos ) $(stars[i]).attr('src', '/images/design/star' + (i+1) + '.gif');				else $(stars[i]).attr('src', '/images/design/star0.gif');			}		}).mouseout(function() {			stars.attr('src', function() { return $(this).attr('data-old-src') });		}).click(function() {			var url = location.pathname;			var pos = jQuery.inArray($(this)[0], stars);			$.get(				'/cikkek/szavazas',				{				"parameters" : [url, pos]				},				function(result) {					if( result ) {						$("#vote-block").replaceWith(result);						self.initVote();					 }				}			);		});	}	}$(document).ready(function() {	var oIssueContent = new classIssueContent();	oIssueContent.init();});

/*
 * ################ END ISSUE_CONTENT END ################ 
 */




