// (c) Jan Hana (honza (at) creation (dot) cz) 2010


// active lightbox for all hyperlinks inside "content" containing image
$(document).ready(function(){
	var attribs = {
		overlayBgColor: '#222222',
		overlayOpacity: 0.6,
		imageLoading:  '/lightbox/images/loading.gif',
		imageBtnClose: '/lightbox/images/close.gif',
		imageBtnPrev:  '/lightbox/images/prev.gif',
		imageBtnNext:  '/lightbox/images/next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Obrázek',
		txtOf: 'z'
	};

	$("#content").find("a[href*='.jpg'],a[href*='.gif'],a[href*='.png']").lightBox(attribs); // all hyperlinks to image JPG
	//$("#content").find("a[href*='.gif']").lightBox(attribs); // all hyperlinks to image GIF
	//$("#content").find("a[href*='.png']").lightBox(attribs); // all hyperlinks to image PNG
});



// all external links in new window
$(document).ready(function() {
	$("a[class!='noexternal']").filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).addClass('external')
	.click(function() {
		window.open(this.href);
		return false;
	});
});


// disable all buttons after form is submitted
$(document).ready(function() {
	$('form').append("<input type='hidden' name='odeslano' value='1' />")
	.submit(function() {
		$('input[type=submit]', this).attr('disabled', 'disabled');
		return true;
	});
});
