$(document).ready(function(){
	// lightbox
	$('#right a>img').each(function(){
		var title = $(this).attr('alt');
		$(this).parent().attr('title', title);
	});
	
	$('#right a>img').parent().slimbox({ counterText: "Zdjęcie {x} z {y}" }, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});
});

function checkCForm(){
	var ok = true;

	if(getById('imie').value.length < 3)
		ok = false;
	else if(getById('nazwisko').value.length < 3)
		ok = false;
	else if(getById('tel').value.length < 3)
		ok = false;
	else if(getById('email').value.length < 3)
		ok = false;
	else if(getById('tresc').value.length < 3)
		ok = false;

	if(!ok){
		alert('Proszę wypełnić wszystkie pola oznaczone gwizadką.');
	}

	return ok;
}

function show(elem, type){
	getById(elem).style.display = type;
}

function hide(elem){
	getById(elem).style.display = "none";
}

function getById(name){
	return typeof name == "string" ? document.getElementById(name) : name;
}

function isIE(){
	return (document.all && !window.opera) ? true : false;
}
