function $(id){
	return document.getElementById(id);
}

function initImage() {
	var fn;
	if ($('fotothumb')) {
		var image = $('fotothumb').getElementsByTagName('img');
		for (i=0; i<image.length; i++) {
			if (image[i].className!='bigf') {
				image[i].style.visibility = "visible";
				image[i].className = "reflect";
			} else {
				image[i].style.display='block';
			}
		}
		if ($('lodingfid')) $('lodingfid').style.display='none';
	}
	return false;
}


function checkcontactform() {
	
	if ($('cf_email').value=='') {
		alert('Email albo telefon?');
		return false;
	}
	
	if ($('cf_content').value=='') {
		alert('Pusta wiadomość?');
		return false;
	}
	
	return true;
}