$(document).ready(
	function()
	{

		$('div#top ul.menu li').hover(function() {
			$(this).find('a').next().fadeOut(200);
		}, function() {
			$(this).find('a').next().fadeIn(200);
		});
		
		$('#zmien_oddzial').click(function(){
            $('#select_oddzial').toggle();
        })
	}
);



function pwcalert(msg)
{
    $('body').append('<div style="display:none;" id="aaa123123">' + msg + '</div>');
    $('#aaa123123').dialog({
                    bgiframe: true,
                    modal: true,
                    closeOnEscape: true,
//                    beforeclose: function() {
//                                    $('#aaa123123').remove();
//                            },
                    buttons: {
                            Ok: function() {
                                    $(this).dialog('close');
                            }
                    }
            });

}

function usunPrzyklad(id, usunCo){
	if($('#' + id).val() == usunCo){
		$('#' + id).val('');
	}
}

function Potw(link, pytanie){
	var odp = confirm(pytanie);

	if(odp){
		setTimeout( "window.location = '" + link +"'", 0 );
	}
}

function otworzOkno(url)
{
	window.open(url,"Kageromania", "width=1000, height=800, menubar=no, toolbar=no, location=no, scrollbars=yes, resizable=yes, status=no, location=no, left=0, top=0");
}

function zmienf(x){
	if(x == 1){
		$('.f_span').css('display', '');
	}else if(x == 2){
		$('.f_span').css('display', 'none');
	}
}
