	  	$(document).ready(function(){
			$(".box-cross").mouseover(function() {
				$(this).parent().find("+.tooltip").show();
			});
			$(".box-cross").mouseout(function() {
				$(this).parent().find("+.tooltip").hide();
			});
			$("#blog a").mouseover(function() {
				$(this).after().find("img").css("display", "block");
			});
			$("#blog a").mouseout(function() {
				$(this).after().find("img").css("display", "none");
			});
			$("#seznam-prispevkov a").mouseover(function() {
				$(this).after().find("img").css("display", "block");
			});
			$("#seznam-prispevkov a").mouseout(function() {
				$(this).after().find("img").css("display", "none");
			});
            $("ul#seznam-podjetij a.seznam-link").click(function() {
				 $("p.seznam").hide("slow");
                 $(this).nextAll("p.seznam").toggle("slow");
              });
            $("ul#seznam-podjetij2 a.seznam-link").click(function() {
				 $("p.seznam").hide("slow");
                 $(this).nextAll("p.seznam").toggle("slow");
              });
            $("ul#news-seznam-podjetij a.seznam-link").click(function() {
				 $("p.seznam").hide("slow");
                 $(this).nextAll("p.seznam").toggle("slow");
              });
            $("ul#news-seznam-podjetij2 a.seznam-link").click(function() {
				 $("p.seznam").hide("slow");
                 $(this).nextAll("p.seznam").toggle("slow");
              });


     
        	
        	$("#showAll").click(function(){
				$("#garbage-list").slideDown('slow');
        	});
        	
        	
		});
