$(document).ready(function() {
	$('.botao').mouseover(function (){
		$('.botao').children('.submenu').css('display','none');
		
		$('.botao a img').each(function(){
			var img = $(this).attr('src');
			img = img.replace('_hover.jpg','.jpg');
			$(this).attr('src',img);
		});
		
		var img = $(this).children('a:first').children('img').attr('src');
		if(img.indexOf('_hover.jpg')==-1)
			img = img.replace('.jpg','_hover.jpg');
			
		$(this).children('a:first').children('img').attr('src',img);
		$(this).children('.submenu').css('display','block');
	});
	$('.botao').children('.submenu').mouseout(function (){
		var img = $(this).parent().children('a:first').children('img').attr('src');		
		img = img.replace('_hover.jpg','.jpg');
		$(this).parent().children('a:first').children('img').attr('src',img);
		$(this).css('display','none');
	});
	$('.botao_barra').mouseover(function(){
		$('.botao').children('.submenu').css('display','none');
		
		$('.botao a img').each(function(){
			var img = $(this).attr('src');
			img = img.replace('_hover.jpg','.jpg');
			$(this).attr('src',img);
		});
	});
	$('.header').mouseover(function(){
		$('.botao').children('.submenu').css('display','none');
		
		$('.botao a img').each(function(){
			var img = $(this).attr('src');
			img = img.replace('_hover.jpg','.jpg');
			$(this).attr('src',img);
		});
	});
});