$(document).ready(function(){
	
	if ($('div.doc_slider span') != null){
		/*Pokazywanie i ukrywanie dokumentow do pobrania*/
		$('div.doc_slider span').click(function() {
			$(this).next('div.docs').slideToggle("slow");
	
			if ($(this).children().text() == 'rozwiń') {
				$(this).children().text("zwiń");
				$(this).attr("title","zwiń");
			}
			else if ($(this).children().text() == 'zwiń') {
				$(this).children().text("rozwiń");
				$(this).attr("title","rozwiń");
			}
		});
	
		/*Podkreslanie po najacheniu napisów rozwiń/zwiń*/
		$('div.doc_slider span').mouseover(function() {
			$(this).children().addClass("podkreslenie");
		});
		$('div.doc_slider span').mouseout(function() {
			$(this).children().removeClass("podkreslenie");
		});
	}
});