﻿// JavaScript Document


$(document).ready(function(){
	//centrowanie tytulow kategorii					   	
	$("div.szkoleniakategoriatytul p").each(function(){
		var h=$(this).height();
		var tmp=(68-h)/2;
		tmp=Math.round(tmp);
		if(tmp>0){
			$(this).css({"margin-top":tmp+"px"});
		}
	});
	
	//wiecej dla newsow
	
	
	$("div.newstext").css("display","none");
	$("div.newsreadmore").toggle(
								 function(){
									 $(this).prev("div.newstext").slideDown(400);
									 $(this).html("Zwiń");
									 },
								 function(){
 									 $(this).prev("div.newstext").slideUp(400);
									 $(this).html("Więcej");
									 }
								 );
	

});
