
/*   ----------------   ролловеры на меню --------*/
function btn_over(src) 
{
src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('.jpg','_over.jpg');

}   
function btn_out(src) 
{	
src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('_over.jpg','.jpg');
}

function btn1_over2() 
{
 document.btn1.src = document.btn1.src.replace('.jpg','_over.jpg');
 document.btn2.src = document.btn2.src.replace('.jpg','_neigbr_over.jpg');
} 
  
function btn1_out2() 
{
 document.btn1.src = document.btn1.src.replace('_over.jpg','.jpg');
 document.btn2.src = document.btn2.src.replace('_neigbr_over.jpg','.jpg');
}

function btn2_over2() 
{
 document.btn2.src = document.btn2.src.replace('.jpg','_over.jpg');
 document.btn1.src = document.btn1.src.replace('.jpg','_neigbr_over.jpg');
} 
  
function btn2_out2() 
{
 document.btn2.src = document.btn2.src.replace('_over.jpg','.jpg');
 document.btn1.src = document.btn1.src.replace('_neigbr_over.jpg','.jpg');
}

function t_over(ths)
{
//alert(layer(ths).style.background)
layer(ths).style.background='url("/images/btn_template_over.jpg") no-repeat';
//document.getElementById(ths).style.background="transparent url('/images/btn_template_over.jpg') no-repeat;";
/*ths.className="mn1 mn1c";*/
}
function t_out(ths)
{
//alert(layer(ths).style.background)
layer(ths).style.background='url("/images/btn_template.jpg") no-repeat';
//alert(ths)
//document.getElementById(ths)//
/*ths.className="mn1 mn1nc";*/
}

