//<![CDATA[	

var url = top.location.href;
var pedacosurl = url.split('/');
$(document).ready(function(){
	
	$('#menu a').hover(
		function(){
			$('#menu a[rel="'+this.rel+'"] img').attr('src',link+'imgs/bt_'+this.rel+'_click.png');
			},
			function(){
			$('#menu a[rel="'+this.rel+'"] img').attr('src',link+'imgs/bt_'+this.rel+'.png');
			}	
	)
	
	$('#acesso_rapido').change(function(){
		window.location.href = $(this).attr('value');
	});
   
});

//]]>