$(document).ready(function() {
	if ($.browser.msie)
	{
		$("#menu_top > a")
		.mouseover(function() {
			$(this).css('background', '#000');
		})
		.mouseleave(function() {
			$(this).css('background', '#FFF');
		});
	} else {
		$("#menu_top > a")
		.mouseover(function() {
			$(this).stop().animate({ backgroundPosition: "(0 0)" }, 350);
		})
		.mouseleave(function() {
			$(this).stop().animate({ backgroundPosition: "(0 -170px)" }, 350);
		});
	}

	$("#internet_studio")
	.mouseover(function() {
		$(this).stop().animate({ height: '130px' }, 100);
	}).mouseleave(function() {
		$(this).stop().animate({ height: '120px' }, 200);
	});

	$("#menu_middle > a")
	.mouseover(function() {
		$(this).stop().animate({ top: "-10px", height: '110px' }, 100);
	}).mouseleave(function() {
		$(this).stop().animate({ top: "0px", height: '100px' }, 200);
	});
});
