jQuery(function(){
	//starts top lava menu
	$('#nav').lavaLamp({ fx: "easeout", speed: 700 });

	//popup links
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	 
	//email spam protection
    $('.email').each(function() {
		var $email = $(this);
		var address = $email.text()
        .replace(/\s*\[at\]\s*/, '@')
        .replace(/\s*\[dot\]\s*/g, '.');
		$email.html('<a href="mailto:' + address + '">'
        + address +'</a>');
    });
	
	//carousel
	$(".logos").jCarouselLite({
		auto: 3000,
		speed: 1000,
	});

});