
/*****************************
*(c) 2007 Flixya.com 
* @Author: Florian Cervenka
*******************************/

/******************************
* HIT rating
******************************/
	var current_hit_ID = null;

	function hit_up(ID){
		
		var murl = 'http://www.flixya.com/ajax/hit_blog.php';
		var pars = 'what=up&ID='+ID;
		murl = murl+'?'+pars;
		loadbar(1);
		new Ajax.Updater('updater_hit', murl, {onComplete:function(){loadbar(0);},asynchronous:true, evalScripts:true});
		current_hit_ID =ID;
	}
	
	function hit_down(ID){
		var murl = 'http://www.flixya.com/ajax/hit_blog.php';
		var pars = 'what=down&ID='+ID;
		murl = murl+'?'+pars;
		loadbar(1);
		new Ajax.Updater('updater_hit', murl, {onComplete:function(){loadbar(0);},asynchronous:true, evalScripts:true});
		current_hit_ID =ID;
	}
	
	function hit_counter_up(ID){
		document.getElementById('hit_button_'+ID+'_r_current').style.display='none';
		Effect.Appear('hit_button_'+ID+'_r_up');
	}
	
	function hit_counter_down(ID){
		document.getElementById('hit_button_'+ID+'_r_current').style.display='none';
		Effect.Appear('hit_button_'+ID+'_r_down');
	}

	