-{% block extrahead %}
- <script type="text/javascript">
- $(function() {
- $('#toggle-description').hover(
- function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
- function() { $(this).css({background: '#EEE'}); }
- ).click(function() {
- if ($('#description').hasClass('hidden')) {
- $('#description').slideDown('fast').removeClass('hidden');
- $('p', this).html('Zwiń opis ▲');
- } else {
- $('#description').slideUp('fast').addClass('hidden');
- $('p', this).html('Rozwiń opis ▼');
- }
- });
- });
- </script>
-{% endblock %}
-