$(document).ready(function(){
	jQuery(function($) {
		 $("span").pngfix();
	});

	$('a.email_replace_low').nospam({
	  replaceText: true,
	  filterLevel: 'low'
	});
	
	$('#loading').ajaxStart(function() {
	  $(this).show();
	  }).ajaxStop(function() {
	  $(this).hide();
	});

	$("ul.termeklistateljes li:even").css("background-color", "#F0F0F0");
		$("ul.termeklistateljes li").hover(
		  function (over) {
		$(this).css("color", "#FF0000");
		  },
		  function (out) {
		$(this).css("color", "#666666");
		  }
	);

		$().piroBox({
			my_speed: 300,  //animate speed
			bg_alpha: 0.3, //overlay opacity
			radius: 4,  // caption rounded corners
			this_next : 'next_out', // next button inside or outside the imageBox--> next == inside, next_out == outside
			this_prev : 'prev_out', // prev button inside or outside the imageBox--> prev == inside, prev_out == outside
			credit: null // credits to pirolab website,if don't want to show it leave so!!
	});


});


function WAtrimIt(theString,leaveLeft,leaveRight)  {
  if (!leaveLeft)  {
    while (theString.charAt(0) == " ")
      theString = theString.substring(1);
  }
  if (!leaveRight)  {
    while (theString.charAt(theString.length-1) == " ")
      theString = theString.substring(0,theString.length-1);
  }
  return theString;
}

function WAAddError(formElement,errorMsg,focusIt,stopIt)  {
  if (document.WAFV_Error)  {
	  document.WAFV_Error += "\n" + errorMsg;
  }
  else  {
    document.WAFV_Error = errorMsg;
  }
  if (!document.WAFV_InvalidArray)  {
    document.WAFV_InvalidArray = new Array();
  }
  document.WAFV_InvalidArray[document.WAFV_InvalidArray.length] = formElement;
  if (focusIt && !document.WAFV_Focus)  {
	document.WAFV_Focus = focusIt;
  }

  if (stopIt == 1)  {
	document.WAFV_Stop = true;
  }
  else if (stopIt == 2)  {
	formElement.WAFV_Continue = true;
  }
  else if (stopIt == 3)  {
	formElement.WAFV_Stop = true;
	formElement.WAFV_Continue = false;
  }
}

function WAValidateEL(formElement,value,errorMsg,minLength,maxLength,reformat,focusIt,stopIt,required)  {
  var isValid = true;
  if ((!document.WAFV_Stop && !formElement.WAFV_Stop) && !(!required && value==""))  {
	if (reformat)  {
	  if (reformat == "left")  {
	    value = WAtrimIt(value,false,true);
	  }
	  if (reformat == "right")  {
	    value = WAtrimIt(value,true);
	  }
	   if (reformat == "both")  {
	    value = WAtrimIt(value);
	  }
    }
	if ((value.length < minLength) || (value.length > maxLength && maxLength > 0))  {
	  isValid = false;
	}
  }
  if (!isValid)  {
    WAAddError(formElement,errorMsg,focusIt,stopIt);
  }
  else if (reformat)  {
    formElement.value = value;
  }
}
function WAAlertErrors(errorHead,errorFoot,setFocus,submitForm)  { 
  if (!document.WAFV_StopAlert)  { 
	  document.WAFV_StopAlert = true;
	  if (document.WAFV_InvalidArray)  {  
	    document.WAFV_Stop = true;
        var errorMsg = document.WAFV_Error;
	    if (errorHead!="")
		  errorMsg = errorHead + "\n" + errorMsg;
		if (errorFoot!="")
		  errorMsg += "\n" + errorFoot;
		document.MM_returnValue = false;
		if (document.WAFV_Error!="")
		  alert(errorMsg.replace(/&quot;/g,'"'));
		else if (submitForm)
		  submitForm.submit();
	    if (setFocus && document.WAFV_Focus)  {
		  document.tempFocus = document.WAFV_Focus;
          setTimeout("document.tempFocus.focus();setTimeout('document.WAFV_Stop = false;document.WAFV_StopAlert = false;',1)",1); 
        }
        else {
          document.WAFV_Stop = false;
          document.WAFV_StopAlert = false;
        }
        for (var x=0; x<document.WAFV_InvalidArray.length; x++)  {
	      document.WAFV_InvalidArray[x].WAFV_Stop = false;
	    }
	  }
	  else  {
        document.WAFV_Stop = false;
        document.WAFV_StopAlert = false;
	    if (submitForm)  {
	      submitForm.submit();
	    }
	    document.MM_returnValue = true;
	  }
      document.WAFV_Focus = false;
	  document.WAFV_Error = false;
	  document.WAFV_InvalidArray = false;
  }
}
//-->
