var website = "http://www.getreddy.ro";

var s = new Array;


function vote(val, item){
		var url = website + '/actions/vote.php';
		var pars = 'action=vote&nota=' + val + "&id_item="+item;
		
		var myAjax = new Ajax.Updater('rate', url, {method: 'get', parameters: pars});
		
	}
	
function highLight(num){
	for (val = 1; val <= num; val++){
		var element   = 'stele_' + val
		newImage = "url("+website+"/assets/frunze.gif) 0px 0px  no-repeat";
        $(element).style.background = newImage;
	}
}

function deHighLight(num){
	for (val = 1; val <= num; val++){
		var element   = 'stele_' + val
		$(element).style.background = "" ;
	}
}

function stripHTML(){
var re= /<\S[^><]*>/g
for (i=0; i<arguments.length; i++)
arguments[i].value=arguments[i].value.replace(re, "")
}