$(function(){
			

/* ext links
---------------------------------------------------------------------------- */
	$("a[rel*=ext]")
		.click( function() {
			 window.open( $(this).attr('href') ); 
			 return false;
		}) ;


/* emails
---------------------------------------------------------------------------- */
	$("a[rel=email]").each( function(){
		var e = $(this).text() ;
		e = e.replace('/','@');
		$(this).attr('href', 'mailto:' + e);
		$(this).text(e);
	});	
	
/* lightboxes
---------------------------------------------------------------------------- */
	$("a[rel*=box]").fancybox({
		/*	
		'overlayOpacity'	: 0.7,
		'overlayColor'		: '#000000',
		*/
	});		
	$("a[rel=form]").fancybox({
		type				: 'iframe' ,
		height				: $(window).height() -200 ,
		width 				: 600
		/*	
		'overlayOpacity'	: 0.7,
		'overlayColor'		: '#000000',
		*/
	});		
	
	
/* zlaty-dul
---------------------------------------------------------------------------- */
	$('#texxt').jScrollPane({
		showArrows:true
	});

	$('#menu a').hover( function () { 
		$(this).animate({ marginLeft: "15px" }, 200 );
	},  function () { 
		$(this).animate({ marginLeft: "0px" }, 200 );
	}
	);
});

