iehover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; ++i) {
		sfEls[i].onmouseover=function() {
			this.className+=" iehover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", iehover);


function verify() {
		var wzor=/^[a-z0-9\-_\.]+?@[a-z0-9\-_\.]+?\.[a-z]{2,5}$/;
		var wpisana = document.getElementById('newsletter_email').value;
		if(wzor.test(wpisana)==false || wpisana==''){
			alert('Wprowadzony adres email jest niepoprawny.');
		} else {
			document.getElementById('newsletter_form').submit()
		}
}

function search_box_submit() {
	var wpisana = document.getElementById('search_keyword').value;
	if(wpisana == ''){
		alert('Nie wprowadzono slowa kluczowego dla wyszukiwania.');
	} else {
		document.getElementById('search_form').submit()
	}
}
	
