			function my_kwicks(){
				$('.kwicks').kwicks({
					duration: 300,   
					max: 400,  
					spacing:  0  
				});
			}  

			function my_email() {
				$('a.email').each(function(){
				e = this.rel.replace('/','@');
				this.href = 'mailto:' + e;
				$(this).text(e);
				});				
			}


$(document).ready(function(){
						 
my_kwicks();
my_email();
$('.tooltip').tooltip();
$('.fancy').fancybox({
					'hideOnContentClick': false,
					'frameHeight' : 400,
					'frameWidth' : 500,
					'overlayOpacity': .5
					 });
});
