var hogar = 0, profesional = 0, salud = 0, dinero = 0, crecimiento = 0, amigos = 0, familia = 0, amor = 0, ocio = 0;
var iRuedaWidth = 450;
var iRuedaHeight = 350;
function get_valores(){
    hogar = $('#id_puntuacion_hogar option:selected').attr('value') || 0;
    profesional = $('#id_puntuacion_trabajo').val() || 0;
    salud = $('#id_puntuacion_salud').val() || 0;
    dinero = $('#id_puntuacion_dinero').val() || 0;
    crecimiento = $('#id_puntuacion_crecimiento_personal').val() || 0;
    amigos = $('#id_puntuacion_amigos').val() || 0;
    familia = $('#id_puntuacion_familia').val() || 0;
    amor = $('#id_puntuacion_amor').val() || 0;
    ocio = $('#id_puntuacion_ocio').val() || 0;
}

function reload_rueda(width, height){
	width = width || iRuedaWidth;
	height = height || iRuedaHeight;
    get_valores();
	url_rueda = '/ruedas/rueda-hogar'+ hogar +'profesional'+ profesional +'salud'+ salud +'dinero'+ dinero +'crecimiento'+ crecimiento +'amigos'+ amigos +'familia'+ familia +'amor'+ amor +'ocio'+ ocio +'.png?w=' + width + '&h=' + height
	
    $('img#rueda_vida').attr('src', url_rueda)
}

$(document).ready( function(){
	$('.borrar_valores').click(function(){
        $('form.rueda select').val('');
        reload_rueda();
        $('dd.guardar').fadeOut();
        return false; 
    });
	
	$('.tooltip').each(function(){
	    texto = $(this).attr('id').match(/tooltip-(.+)/)[1];
	    $(this).qtip({
	        content: {
	            url: 'ajax/tooltip-' + texto + '.html',
	            method: 'get'
	       },
	       style: {
	           tip: 'topLeft',
	           name: 'dark',
	           width: 300
	       }
	  });
	});
});
