jQuery.noConflict();
jQuery(document).ready(function(){

	swapMenu();
	swapFooter();
	
});



function swapMenu()
{
	jQuery('img', '#menu').mouseover(function(){ jQuery(this).attr('src', jQuery(this).attr('src').replace('.png', '_sobre.png')); });
	jQuery('img', '#menu').mouseout(function(){ jQuery(this).attr('src', jQuery(this).attr('src').replace('_sobre.png', '.png')); });
}

function swapFooter()
{
	jQuery('#imgFooter', '.footer').mouseover(function(){ jQuery(this).attr('src', jQuery(this).attr('src').replace('2.png', '1.png')); });
	jQuery('#imgFooter', '.footer').mouseout(function(){ jQuery(this).attr('src', jQuery(this).attr('src').replace('1.png', '2.png')); });
}