;jQuery(function($){
    var $tirroir = $('#choix_vehicule_tirroir');
    
    $('#choix_vehicule').hover(function(){
        $(this).addClass('hover');
        $tirroir.show();
    },
    function(){
        $tirroir.hide();
        $(this).removeClass('hover');
    });
    
})


function popup_infos(mylink, windowname)
{
    if (! window.focus)return true;
    var href;
    if (typeof(mylink) == 'string')
    href=mylink;
    else
    href=mylink.href;
    window.open(href, windowname, 'width=600,height=600,scrollbars=yes');
    return false;
}


function form_clear(form_element){
	form_element.value="";
	}
        
        
function form_focus(form_element){
	form_element.style.backgroundColor = "#fff";
	form_element.value="";
	}
	
	
function form_defocus(form_element, texte){
	form_element.style.backgroundColor = "#afc3d9";
        
        if(form_element.value == "")
            form_element.value=texte;
	}
        
