function clearText(el) {
if (el.defaultValue==el.value) el.value = ""
}



if (document.images) {
        menu1on = new Image();
        menu1on.src = "/blog/wp-content/themes/lawone/images/nav_home_on.gif"; 
        menu1off = new Image();
        menu1off.src = "/blog/wp-content/themes/lawone/images/nav_home_off.gif";
        
        menu2on = new Image();
        menu2on.src = "/blog/wp-content/themes/lawone/images/nav_lawyer_on.gif"; 
        menu2off = new Image();
        menu2off.src = "/blog/wp-content/themes/lawone/images/nav_lawyer_off.gif";
        
        menu3on = new Image();
        menu3on.src = "/blog/wp-content/themes/lawone/images/nav_about_on.gif"; 
        menu3off = new Image();
        menu3off.src = "/blog/wp-content/themes/lawone/images/nav_about_off.gif";
        
        menu4on = new Image();
        menu4on.src = "/blog/wp-content/themes/lawone/images/nav_contact_on.gif"; 
        menu4off = new Image();
        menu4off.src = "/blog/wp-content/themes/lawone/images/nav_contact_off.gif";
}
function changeImages(){
        if(document.images){
                for (var i=0; i<changeImages.arguments.length; i+=2) {
                        document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
                }
        }
}