// JavaScript Document

function mouse_on(div,li){
if(document.all){
document.getElementById(div).filters[0].Opacity=100;
document.getElementById(div).style.backgroundColor="#1E88BC";
document.getElementById(li).style.color="#FFFFFF";
document.getElementById(li).style.fontStyle="italic";
}else{
document.getElementById(div).style.opacity=1;
document.getElementById(div).style.backgroundColor="#1E88BC";
document.getElementById(li).style.color="#FFFFFF";
document.getElementById(li).style.fontStyle="italic";
}
}

function mouse_click(url){
self.location=url;
}
function mouse_out(div,li){
if(document.all){
document.getElementById(div).filters[0].Opacity=30;
document.getElementById(div).style.backgroundColor="#FFFFFF";
document.getElementById(li).style.color="#000000";
document.getElementById(li).style.fontStyle="";
}else{
document.getElementById(div).style.opacity=0.30;
document.getElementById(div).style.backgroundColor="#FFFFFF";
document.getElementById(li).style.color="#000000";
document.getElementById(li).style.fontStyle="";
}
}

function up_mouse_on(div){
document.getElementById(div).style.backgroundImage="url('images/up_right_up_but.jpg')";
}
function up_mouse_out(div){
document.getElementById(div).style.backgroundImage="";
}
