var errorstr = '';

///////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
	if(window.AntiSpam_mailto) AntiSpam_mailto();
	$('input[type=text]:not(.typetext)').addClass('typetext');
	$('input[type=checkbox]:not(.typecheckbox)').addClass('typecheckbox');
	$('input[type=radio]:not(.typeradio)').addClass('typeradio');
	$('input[type=file]:not(.typefile)').addClass('typefile');
	$('input[type=submit]:not(.typesubmit)').addClass('typesubmit');
	if($().TextAreaResizer) $('textarea.resizable:not(.processed)').TextAreaResizer();

	if($().fancybox) $('a.fancybox').fancybox({
		'centerOnScroll': true,
		'hideOnContentClick': true,
		'overlayColor':'#000',
		'overlayOpacity':0.6,
		'speedIn': 300,
		'speedOut': 200,
		'titlePosition':'over',
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'onComplete':function(currentArray, currentIndex, currentOpts){
			pager = $('<div id="fancybox-pageinfo">'+(currentIndex+1) + ' / ' + currentArray.length+'</div>').appendTo($("#fancybox-inner"));
			}
		});

	if($().fancybox) $('a.fancyboxvideo').fancybox({
		'scrolling': 'no',
		'width': 560,
		'height': 444,
		'centerOnScroll': true,
		'hideOnContentClick': false,
		'showNavArrows': false,
		'overlayColor':'#000',
		'overlayOpacity':0.6,
		'speedIn': 300,
		'speedOut': 200,
		'titlePosition':'over',
		'transitionIn': 'elastic',
		'transitionOut': 'elastic'
		});

	if($().lightbox) $('a[rel*=lightbox]').lightbox({
		fileLoadingImage : 'res/jquery/lightbox/loading.gif',
		fileBottomNavCloseImage : 'res/jquery/lightbox/close.gif',
		overlayOpacity : 0.8,
		borderSize : 10,
		displayTitle: true,
		strings : {
			prevLinkTitle: 'Előző kép',
			nextLinkTitle: 'Következő kép',
			prevLinkText:  '&laquo; Előző',
			nextLinkText:  'Következő &raquo;',
			closeTitle: 'Bezár',
			image: 'Kép ',
			of: ' / '
			},
		fitToScreen: true// resize images if they are bigger than window
		});

	if(window.customOnLoad_doc) customOnLoad_doc();
	if(window.errorstr) setTimeout('alert(errorstr);', 100);
	});

///////////////////////////////////////////////////////////////////////////////
function AntiSpam_mailto(){
	$("span[class='email']").each(function(){
		var mailtoVal = $(this).html().replace('[KUKAC]', '@').replace('[PONT]', '.');
		var titleVal = $(this).attr('title').replace('[KUKAC]', '@').replace('[PONT]', '.');
		if(!titleVal) titleVal = mailtoVal;
		var s = mailtoVal.match(/subject=([^&]*)/);
		if(s) mailtoVal = mailtoVal.replace(/(subject=)([^&]*)/, '$1'+escape(s[1]));
		$(this).replaceWith('<a href="mailto:'+mailtoVal+'" class="email">'+titleVal+'</a>')
		});
	}

function showVarazslo(){
	$('#swfReferenciaContainer').hide();
	new overlayWindow('swfVarazsloOverlay', {opacity:80});
	}
function closeVarazslo(){
	overlayWindowClose('swfVarazsloOverlay');
	$('#swfReferenciaContainer').show();
	}



