		$(document).ready(function(){ 

			$("#upoutavka li").click(function(){
				window.location=$(this).find("a").attr("href");return false;
			});

			$("#upoutavka li").mouseenter(function(){
				$(this).fadeOut(50);$(this).fadeIn(150);
			});
			
			$("#designernovy").click(function(){
				window.location=$(this).find("a").attr("href");return false;
			});

			$("#designernovy").mouseenter(function(){
				$(this).fadeTo(50,0.01);$(this).fadeTo(150,1);
			});
					
		});
