$(document).ready(function(){
	
    /* Function for lavalamp navigation menu */
    $("#menu").lavaLamp({
	fx: "backout",
	speed: 700
    });


    $(".fancybox").fancybox({
	'zoomSpeedIn': 550,
	'zoomSpeedOut': 550
    });


    // de-spam mail addresses
    $('.mail').each(function() {
	$this=$(this);
	var $addr = $this.text().replace(' at ','@')+".co.uk";
	$this.text($addr).wrap('<a href="mailto:'+$addr+'">');
    })



});