$(function () {

	$("#image").pngFix();
	$(".images").pngFix();

	$("#cat").ready(function () {
		$(".c", this).css("z-index", 1);
		$(".c", this).hover(function () {
			$(this).css("z-index", 2);
			$(".popup", this).css({visibility:"visible"});
		}, function () {
			$(".popup", this).css({visibility:"hidden"});
			$(this).css("z-index", 1);
		});		
	});
});
