/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function toggleV(element){
    if($(element).hasClassName('closed')){
        $(element).removeClassName('closed');
        $(element).addClassName('opened');
    }
    else{
        $(element).removeClassName('opened');
        $(element).addClassName('closed');
    }
}
array_green=new Image();
array_green.src="img/r_arr_green.gif";
array_black=new Image();
array_black.src="img/r_arr_black.gif";

$('galerie').onclick=function(){
    //alert('Wooow!');
    toggleV('listagalerii');
}
lg=$('listagalerii').getElementsByTagName('a');
for(i=0;i< lg.length ; i++)
    {
    lg[i].onmouseover=function(){
                                 //$(this.innerHTML.toLowerCase()+'_arr').src='img/r_arr_green.gif';
                                 $(this.innerHTML.toLowerCase()+'_arr').src=array_green.src;
                                                     };
   lg[i].onmouseout=function(){
                              //$(this.innerHTML.toLowerCase()+'_arr').src='img/r_arr_black.gif';
                              $(this.innerHTML.toLowerCase()+'_arr').src=array_black.src;
                                        };
};

$('rl').onclick=function(){
   document.location='/';
}


