
$(document).ready(function() {

	// zlikwidowanie kropek wokol linkow
	$('a, label').bind('focus',
        function() {
            if (this.blur) this.blur();
        }
    );

});	
	

// pokazuje menu i stopke (po zaladowaniu Flasha)

function fShowFooter(){

	$('#Footer').show();
	$('#Menu').show();

}

function submitOver(id) {
	var el = document.getElementById(id);
	el.src = 'images/btn_parents_contactform_02.gif';
}

function submitOut(id) {
	var el = document.getElementById(id);
	el.src = 'images/btn_parents_contactform_01.gif';
}

function openWindow(page, width, height) {
    var meta = 'width=' + width + ',height=' + height + ',menubar=no,scrollbars=no';
    var myWindow = window.open(page,'',meta);
    myWindow.focus();
}