// JavaScript Document

$(document).ready(function() {
						   
 /*	$('.hover-star').rating({ 
						 
	focus: function(value, link){ 
			var tip = $('#hover-test'); 
			tip[0].data = tip[0].data || tip.html(); 
			tip.html(link.title || 'value: '+value); 
		}, 
		
		blur: function(value, link){ 
			var tip = $('#hover-test'); 
			$('#hover-test').html(tip[0].data || ''); 
		}
		
		callback: function(value, link){ 
				this.form.submit();
  		} 
});*/ 
						   
						   
						   
	$('.hover-star').rating({

		focus: function(value, link){
			var tip = $('#hover-test');
			tip[0].data = tip[0].data || tip.html();
			tip.html(link.title || 'value: '+value);
		},
	
		blur: function(value, link){
			var tip = $('#hover-test');
			$('#hover-test').html(tip[0].data || '');
		},
		
		callback: function(value, link){ 
    	this.form.submit();
  } 
	});	
	
	
	
});
