﻿function stylechangeMouseOver(obj) {
    obj.style.background = "#F1F1F1";
}
function stylechangeMouseOut(obj) {
    obj.style.background = "";
    //obj.style.backgroundImage = "url(../images/new_dot2.gif) no-repeat 0 3px;";
}
function styleSelectFocus(n) {
    for (var i = 1; i < 10; i++) {
        if (n == i) {
            document.getElementById("span" + i).className = "div_js_use";
        }
        else {
            document.getElementById("span" + i).className = "div_background_app";
        }
    }
        
   
}
