function popup (id) {
	window.open('pop.php?id_term='+id,'form_email','width=480,height=600,status=yes,resizable=no,menubar=no,scrollbars=no');
}

function menu() {
	$("ul.l1 li").hover(
		function () {
			$(this).children("ul.l2").show();
			$(this).children("a").addClass("act");
		},
		function () {
			$(this).children("ul.l2").hide();
			$(this).children("a").removeClass("act");
		}
	);
}

function home() {
	$("a.home").hover(
		function () {
			$(".divHome").show();
		},
		function () {
			$(".divHome").hide();
		}
	);
}

function closePopup(){
	$("#TopLayer").hide();
} 

$(document).ready(function(){
	menu();
	home();
//	$("a[rel='terminarz']").colorbox({transition:"none", width:"500", height:"400"});
	$(".wolny_termin").colorbox({iframe:true, innerWidth:550, innerHeight:600})
});

