$(document).ready(
function()
{
	$("div.realizacje").hover(
	function()
	{
		$(this).children("div.realizacje-d").animate({ backgroundColor: "#0071AF"}, "normal");
		
	},function(){ 
  $(this).children("div.realizacje-d").animate({ backgroundColor: "#318EC6"}, "fast");
});
});
$(document).ready(
function()
{
	$("#navlist a").hover(
	function()
	{
		$(this).animate({paddingTop:"3px"}, 200);
		$(this).animate({paddingTop:"0px"}, 200);
		$(this).not("#current").animate({color:"#0092e6"}, "fast");
    
	},
	function()
	{
		$(this).animate({paddingTop:"0px"}, 100);	$(this).not("#current").animate({color:"#fff"}, "fast");
	}
	
	);
}
);

