$(document).ready
(
	function()
	{
		$('.menuSuperior img').mouseover
		(
			function()
			{
				var j78 = $(this).attr('src');
				$(this).attr('src',mudaImagem(j78,2));
			}
		);
		
		$('.menuSuperior img').mouseout
		(
			function()
			{
				var j78 = $(this).attr('src');
				$(this).attr('src',mudaImagem(j78,1));
			}
		);
		
		$('.menuInferiorBloco img').mouseover
		(
			function()
			{
				var j78 = $(this).attr('src');
				$(this).attr('src',mudaImagem(j78,2));
			}
		);
		
		$('.menuInferiorBloco img').mouseout
		(
			function()
			{
				var j78 = $(this).attr('src');
				$(this).attr('src',mudaImagem(j78,1));
			}
		);
		
		
		$('.linhaSubMenuBloco img').mouseover
		(
			function()
			{
				var j78 = $(this).attr('src');
				$(this).attr('src',mudaImagem(j78,2));
			}
		);
		
		$('.linhaSubMenuBloco img').mouseout
		(
			function()
			{
				var j78 = $(this).attr('src');
				$(this).attr('src',mudaImagem(j78,1));
			}
		);
		
		//Combo
		
		$('#linkRapido').change
		(
			function()
			{
				var f44 = $(this).val();
				if(f44!=(-1))
				{
					open(f44,'_self');
				}
			}
		);
		
		//Link logo
		/*$().mousemove(
			function(e)
			{
				var fg67 = e.pageX;
				
				if(fg67 <= '300')
				{
					$('#relogio').html(fg67);
					$('.linhaMenus').click
					(
						function(e)
						{
							open('index.php','_self');
						}
					);
				}
			}
		);*/
		
	}
);

function mudaImagem(j78,cd)
{

	var h88 = j78.length;
	var t56 = ((h88-4)-1);
	var prefix = j78.slice(0,t56);
	var sufix = j78.slice((t56+1),h88);
	var novaImagem = prefix+cd+sufix;
	return novaImagem;
}
