$(document).ready(
   function()
   {
		/* external link */		
		$("a[rel='blank']").click(function(){
			window.open($(this).attr('href'));
			return false;
		});

		/* nav */
		$(function() {
            $("#nav").lavaLamp({
                fx: "backout", 
                speed: 1400,
                click: function(event, menuItem) {
                    //return false;
                }
            });
        });

		/* news */
		$("#top .news a").click(function(){
			$("#form").toggle('fast');
			return false;
			
		});
		$("#footer .news a").click(function(){
			return false;
			
		});

		/* logo */
		$("#header h1 a").hover(
		  function () {
			$("#header h2").animate({ left: "240px" }, 500 );
		  },
		  function () {
			$("#header h2").animate({ left: "30px" }, 500 );
		  }
		);


});
