$(document).ready(function(){ $('.sm-head span').click(function(){ var a = $(this).attr('class'); $('#h'+a).toggle(); }); $('.zn').click(function(){ var a = $(this).attr('id'); $('#s'+a).toggle('slow'); }); $('.zna').click(function(){ var a = $(this).attr('id'); $('#s'+a).toggle('slow'); var a1 = $(this).attr('title'); if( a1 == "a1") { $(this).attr('title','a2'); $(this).html('zwiń'); } else { $(this).attr('title','a1'); $(this).html('rozwiń'); } }); $('.p1 li span').click(function(){ var a1 = $(this).attr('class'); $('ul#y'+a1).toggle(); }); $('.menu2').click(function() { $(this).animate({ backgroundColor: "native; #00f; red; hsv(60, 60, 60); red; #00f; native" }, 5000); }); $('.kla').hide(); $('#kl').css({'cursor':'pointer','font-size':'10px'}); $('#kl').click(function(){ $('.kla').toggle("slow"); var name = $('#kl').text(); if( name == "rozwiń" ) { $('#kl').text('zwiń'); } else { $('#kl').text('rozwiń'); } }); $('.wza').hide(); $('.wz').css({'cursor':'pointer','font-size':'10px'}); $('.wz').click(function(){ $('.wza').toggle("slow"); var name = $('.wz').text(); if( name == "rozwiń" ) { $('.wz').text('zwiń'); } else { $('.wz').text('rozwiń'); } }); });