$(document).ready(function() {
	$("div.service h2 span.hint").hover(function() {
		$(this).children("div.hint").css({display:"inline"}).pngFix();
		//$(this).children("div.hint").children("div.absolute").children("div.body").pngFix();
	}, function() {
		$(this).children("div.hint").css({display:"none"});
	});
	$("div.service div.hint").hover(function() {
		$(this).css({display:"inline"});
	}, function() {
		$(this).css({display:"none"});
	});
	$("#top_menu a").hover(function() {
		$(this).animate({backgroundPosition:"10px 0"}, 800, function() {
			$(this).animate({backgroundPosition:"0px 0"}, 100, function() {
				$(this).animate({backgroundPosition:"5px 0"}, 200, function() {
					$(this).animate({backgroundPosition:"0px 0"}, 100);
				});
			});
		});
	},function() {
		$(this).stop().animate({backgroundPosition:"-303px 0"}, 400);
	});
});