_msie = ($.browser.msie);

//	OLDAL FELÉPÜLÉSÉNEK ELREJTÉSE
$('html').css({'overflow-y':'scroll','visibility':'hidden'});

$(function(){
	//	SPAMVÉDELEM
	$('a[href^="mailto"]').each(function(){$(this).html($(this).html().replace(/@dfspm/i,'@')).attr('href', $(this).attr('href').replace(/@dfspm/i,'@'));});

	//	AUTOMATIKUS HOVER
	$('img.hover').each(function(){
		if($(this).attr('src').indexOf('belepes_gomb')==-1 || !_msie){
		$(this).data('i', $(this).attr('src').substring(0,$(this).attr('src').length-4));
		$(this).hover(function(){$(this).attr('src', $(this).data('i')+'_allapot.jpg');}, function(){$(this).attr('src',$(this).data('i')+'.jpg');});
		}
	});

	//	BEJELENTKEZÉS

	st = false;

	$('img[src$="belepes_gomb.jpg"]:first').parent().click(function(){
		$('.bejelentkezes').toggle(300);
	});
	$('.bejelentkezes input').each(function(){
		if($.trim($(this).val())!=''){st=false;}
	});
	if(st==false){$('.bejelentkezes').hide();}

	//	TÖBBSOROS LAPFÜLEK KÖZÉPRE IGAZÍTÁSA

	if($('body').hasClass('aloldal')){
		$('.menusor a').each(function(){
		if($(this).children('span').html().toLowerCase().indexOf('<br')!=-1){
			$(this).children('span').css('padding-top','3px');
		}
	});
	}

	//	SUBMIT LINKEK

	$('a.submit').each(function(){
		$(this).click(function(){$(this).parent().submit();});
	});

	//	GYAKRAN ISMÉTELT KÉRDÉSEK MARKETING SZÖVEG
		$('.carousel > a').each(function(i){
			$(this).click(function(){
				$('.carousel .dynamic-'+i).show().siblings('.leiras').hide();
			});
		});
		$('.carousel .leiras:first').show();

	//	OLDAL MEGJELENÍTÉSE
	$('html').css('visibility','visible');
});
