$(document).ready(function(){

	var string_cely_portal = 'celý portál';
	
	function nastav_hladanie() {
		var vysledok = '';
		var cely_portal = false;
		var pocet = 0;
		var celkovy_pocet = 0;
		var text_hodnota = '';
		
		// spocitanie check boxov
		jQuery(".check_hladaj").each(function() {
			celkovy_pocet++;
		});
		
		jQuery(".check_hladaj:checked").each(function() {
			
			text = jQuery(this).val();
			
			if( vysledok != '' ) {
				vysledok = vysledok + '-';
			}
			vysledok = vysledok + text;
			pocet++;
			
			// ziskanie textu
			idecko = jQuery(this).attr('id');
			text_hodnota = jQuery('label[for='+idecko+']').html();
			
			// ak cely portal chceme
			if( text == 'portal' ) {
				cely_portal = true;
			}
			
		});
		
		if( pocet == 1 ) {
			jQuery('#search-box-new-a').html( text_hodnota );
			jQuery('.onclick_hladaj_cely_portal').attr('checked', false);
		} else if( pocet == celkovy_pocet ) {
			jQuery('#search-box-new-a').html( string_cely_portal );
			jQuery('.onclick_hladaj_cely_portal').attr('checked', true);
		} else if( pocet == 0 ) {
			jQuery(".check_hladaj").attr('checked', true);
			jQuery(".onclick_hladaj_cely_portal").attr('checked', true);
			jQuery('#search-box-new-a').html( string_cely_portal );
			nastav_hladanie();
		} else {
			jQuery('#search-box-new-a').html( pocet + ' sekcie' );
			jQuery('.onclick_hladaj_cely_portal').attr('checked', false);
		}
		
		jQuery("#hladaj-kde").val(vysledok);
	}
	
	jQuery('.check_hladaj').click(function() {
		nastav_hladanie();
	});
	
	jQuery('.onclick_hladaj_cely_portal').click(function() {
		
		// ak je to zaskrtnute a chcem hladat vsade..
		if( jQuery(this).attr('checked') == true ) {
			
			jQuery(".check_hladaj").attr('checked', true);
			jQuery('#search-box-new-a').html( string_cely_portal );
			nastav_hladanie();
		}
		
	});

});

