$(document).ready(function(){

   
    $('ul.g1 li').hover(function(){
    
	$(this).find('a').css({'color':'#0a65b3'});
	
	if ((jQuery.browser.msie)&&(parseInt(jQuery.browser.version)<7))
	{
	$(this).css({'background':'url(../../files/images/li_bg153.gif)'});
	}
	else
	$(this).css({'background':'url(../../files/images/li_bg153.png)'});

    },function(){
    
    $(this).find('a').css({'color':'#585858'});
	
	if ((jQuery.browser.msie)&&(parseInt(jQuery.browser.version)<7))
	{
	$(this).css({'background':'url(../../files/images/li_bg153g.gif)'});
	}
	else
	$(this).css({'background':'url(../../files/images/li_bg153g.png)'});
	

	 });  

    	$('ul.v1 li').hover(function(){
    $(this).css({'background-color':'#36a0d0'});
	

    },function(){
    $(this).css({'background-color':'#959595'});
   
	
	
	});


	 
	 }); 
	 
	 


