/*****************************/
/*      www.autazusa.com     */
/*****************************/
function changeLanguage(current, newlang) {
    var reg = new RegExp("/"+current+"/");
    
    if (reg.test(window.location.href)) {
        window.location.href = window.location.href.replace('/'+current+'/', '/'+newlang+'/');
    } else {
        window.location.href = window.location.href + newlang + '/';
    }
}

$(document).ready(function(){
    $('a.car span').css('opacity', 0.7);
});