// JavaScript Document

$(document).ready(function() {
	$("ul#menu li").hover( function(){
		initwidth = $(this).width();
		description = $(this).children("a").attr("title");

		href = $(this).children("a").attr("href");
		$(this).stop().animate({width: "105"},{queue:false, duration:"fast" });
		$(this).children("p").remove();
		$(this).find("a").after("<p><a href='"+href+"'>"+description+"</a></p>")
		$(this).children("p").stop().animate({ opacity: "show" }, {queue:false, duration:"fast"});
	},function(){
		$(this).stop().animate({width: initwidth},{queue:false, duration:"fast"});
		$(this).children("p").stop().animate({ opacity: "0" }, {queue:false, duration:"fast"});
	});

	$('#searchform_top_text').val() ? "" : $('#searchform_top_text').val('Szukaj na stronie');
});

