			(function($){
				$(function(){
					$('.elastic_rate').bind('elastic_rate:setValue', function(){
						var that = this;
						if ($(this).attr('id') != 0)
							{
							$.get('/home/ranking_'+$(this).attr('type')+'/'+$(this).attr('id')+'?vote='+($(this).elastic_rate('getValue')*100),null,function()
								{
									$('> .value',that.parentNode).html('Gracias!');
								});
							}
						else
							$('> .value',that.parentNode).html('Inicia Sesi&oacute;n');
					}).each(function(){
						$(this).elastic_rate({value : $(this).attr('value')})
					});
				});
			})(jQuery);
