function toggleSzolgaltatas(id) {
	var on = ($('szolg'+id+'_pre').style.display != 'none');
	$('szolg'+id+'_pre').style.display = (!on ?'block' : 'none');
	$('szolg'+id).style.display = (on ?'block' : 'none');
	Auchan.growLength();
}

	var AruhazHirPager = null;
	
	var gloFuAruhazHir = function(atP, pSet) {
		if ($('AruhazBottomContent')) {
			Auchan.setContentDefLoading($('AruhazBottomContent'));
			var p = 0;
			if (pSet) {
				p = atP;
			} else {
				if (document.location.hash && /^#p(\d+)$/.test(document.location.hash)) {
					p = (document.location.hash+'').replace('#p', '');
				}
			}
			document.location.hash = 'p'+p;
			new Ajax.Request('/', {
				method: 'get',
				parameters: {getHirek: 1, p: p},
				onSuccess: function(res) {
					$('AruhazBottomContent').update(res.responseText);
					$$('#AruhazBottomContent a').each(function(div) {
						var href = div.readAttribute('href');
						div.setAttribute('href', href+'#aruhaz-vissza');
						console.log(div);
						if (div.up(0).hasClassName('bird')) {
							var bck = div.up(2).select('.stdContentTovabb').first();
							if (bck) bck.onclick = function() {document.location = this.readAttribute('href');}.bind(div);
						}
					});
					Auchan.iframeActivizer();
				},
				onFailure: function () {alert('Hiba történt, kérjük frissítse az oldalt!');}
			});
		}	
	};

	initializes.push(gloFuAruhazHir);
