$(document).ready(function() 
    { 
        $(".volver").click(ira);
    }
);

function ira(){
	x = $(this).attr("href");
	location.href = x;
}
