jQuery(document).ready(function() {
	$("a[rel='lightbox-item']").colorbox({transition:"fade"});

});

function checkForm() {
	form_name = "form";
	inp = document.getElementById(form_name).getElementsByClassName("needed");
	flag = true;
	pwd = "";
	for (i=0;i<inp.length;i++) {
		if (inp[i].value.length==0) flag = false;
		if (inp[i].name=="pwd") pwd = inp[i].value;
		if (inp[i].name=="repwd" && inp[i].value!=pwd) {
			flag = false;
			document.getElementById("pas_error").innerHTML = "Не заполнено";
		}
		if (inp[i].name=="repwd" && inp[i].value==pwd) {
			document.getElementById("pas_error").innerHTML = "";
		}
		
		
	}
	document.getElementById("submit_reg").disabled = !flag;
}
