function rating(id,rate){
		var url = '/inc/rate.php';
		$.ajax({
		   type: 'post',
		   url: url,
		   dataType:'html',
		   //contentType: 'application/x-www-form-urlencoded',
		   data: 'vrate='+ rate + '&' + 'id='+id ,
		   async: true,
		   beforeSend: function(xhr) {
			    $(".ratingbox").html('<img src="/imagenes/loading_transparent.gif" width="15px" title="Votaci&oacute;n en curso por favor espere.." />&nbsp;&nbsp;Votaci&oacute;n en curso por favor espere..');
		   },
		   success: function(datos){
				//datos.setRequestHeader( "Content-type", "text/html; charset=utf-8" );
				//$('div#container').unblock();
				//TODO: Pasando del parametro div ^^ de momento
				$(".ratingbox").html('ok');
				$(".ratingbox").html(datos);
				//$('div#content').html(datos).show();
		   }
		});
		return false;
}
