/** common effetcs **/
$(function(){       
    // menu
     $('#nav ul li a').css( {backgroundPosition: "0 80px"} )
        .mouseover(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 0px)"}, 
    			{duration:200})
    		})
    	.mouseout(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 80px)"}, 
    			{duration:200})
    		})
      
      // icones home
      $('#aFiscal').css( {backgroundPosition: "0px 0px"} )
        .mouseover(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 -92px)"}, 
    			{duration:200})
    		})
    	.mouseout(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 0)"}, 
    			{duration:200})
    		})
      
      $('#aContabil').css( {backgroundPosition: "0px 0px"} )
        .mouseover(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 -92px)"}, 
    			{duration:200})
    		})
    	.mouseout(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 0)"}, 
    			{duration:200})
    		})
      
       $('#aTrabalhista').css( {backgroundPosition: "0px 0px"} )
        .mouseover(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 -92px)"}, 
    			{duration:200})
    		})
    	.mouseout(function(){
    		$(this).stop().animate(
    			{backgroundPosition:"(0 0)"}, 
    			{duration:200})
    		})
});
