$(document).ready(
	function()
	{
	
		$("#firma, #referencje").hover(
		function()
		{
			$(this).animate({
				backgroundPosition: '(-214px 0)'
			}, 400);
		}, function()
		{
			$(this).animate({
				backgroundPosition: '(0 0)'
			}, 400);
		});
		
		$("#oferta").hover(
		function()
		{
			$(this).animate({
				backgroundPosition: '(0 -36px)'
			}, 400);
		}, function()
		{
			$(this).animate({
				backgroundPosition: '(0 0)'
			}, 400);
		});
		
		$("#kontakt").hover(
		function()
		{
			$(this).animate({
				backgroundPosition: '(0 0)'
			}, 400);
		}, function()
		{
			$(this).animate({
				backgroundPosition: '(-214px 0)'
			}, 400);
		});
		
		$("#galeria").hover(
		function()
		{
			$(this).animate({
				backgroundPosition: '(0 0)'
			}, 400);
		}, function()
		{
			$(this).animate({
				backgroundPosition: '(0 -33px)'
			}, 400);
		});
		
	}
);