jQuery(document).ready(function(){ 
	$$("#selectRegion").invoke("observe", "change", window.autoValidation);
	infobulles();
});

autoValidation = function(event){
		var choix = $("selectRegion").value;
		if ($("selectRegion").value == "") {
			choix = "meteo-regions";
		}
        window.location.href = '/' + choix;
    };
	

viderPluie = function(event){
	$("cp").value="";
}

infobulles = function(){
    $$("#selectVille").invoke("observe", "change", window.autoValidationVille);
    $$('#pictosType1 a').each(function(o){
        var ida = o.id;
        
        $$("#" + ida).invoke('observe', 'mouseover', function(e){
            var l = e.pageX - 300;
            var t = e.pageY - 220;
            $$("#p" + ida + "Content")[0].style.left = l + "px";
            $$("#p" + ida + "Content")[0].style.top = t + "px";
        });
        $$("#" + ida).invoke('observe', 'mouseout', function(e){
            $$("#p" + ida + "Content")[0].style.left = "-9999px";
            $$("#p" + ida + "Content")[0].style.top = "-9999px";
        });
    });
};
