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


// active lightbox for all hyperlinks inside "content" containing image
$(document).ready(function(){
	$(".galerie a[href$='.jpg'],a[href$='.gif'],a[href$='.png']").attr("rel", "galery");

	$("a[href$='.jpg'],a[href$='.gif'],a[href$='.png']").filter(function() {
		return $(this).parents(".soubory").length <= 0;
	}).fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600,
		'speedOut'		:	200,
		'overlayShow'	:	true,
		'titlePosition' :	'inside'
	}); // all image hyperlinks
});



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