function preloadimages() {
  var d = document;
  if(document.images) {
  	if(!document.MM_p)
  		document.MM_p = new Array();
  	var i, j = document.MM_p.length, a = preloadimages.arguments;
  	for(i = 0; i < a.length; i++)
  		if(a[i].indexOf("#") != 0) {
  			document.MM_p[j] = new Image;
  			document.MM_p[j++].src=a[i];
  		}
  }
}

// preloadimages()
preloadimages('img/menu_on_01.gif','img/menu_on_02.gif','img/menu_on_03.gif','img/menu_on_04.gif','img/menu_on_05.gif','img/menu_on_06.gif','img/menu_on_07.gif','img/menu_on_08.gif','img/menu_on_09.gif','img/menu_on_10.gif','img/menu_on_11.gif','img/menu_on_12.gif','img/menu_on_13.gif')


$(document).ready(function() {
	$('.menu_pasek a:not(".active")').hover(
		function () {
			var id = $(this).attr('class');
			$(this).find('img').attr('src', 'img/menu_on_' + id + '.gif')
		},
		function () {
			var id = $(this).attr('class');
			$(this).find('img').attr('src', 'img/menu_' + id + '.gif')
		}
	);
	$("a[rel^='prettyPhoto']").prettyPhoto();
});



function pozwolWybrac(max) {
	var zaznaczone = $('table.form input:checkbox:checked').length;
	if(zaznaczone < max) {
		$('table.form input:checkbox:disabled').removeAttr('disabled');
	} else {
		$('table.form input:checkbox:not(:checked)').attr('disabled', 'disabled');
	}
} // function pozwolWybrac();

function submit(){
	$('.przyciski_pasekNadMenu form').submit();
}