$(document).ready(function(){
	
	$('input[type="text"]').focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$('dl.dropdown').hover(
		function(){ $(this).addClass('on');},
		function(){ $(this).removeClass('on');}
	);
	
	$('#launchLB').click(function(){
		var bH = $('#coastline').height();
		var bW = $('body').width();
		$('#lightbox').css({
			 'display': 'block'
			,'height' : bH + "px"
			,'padding-right' : (bW - 980) + "px"
		});
		return false;
	});
	
	$('#close').click(function(){
		$('#lightbox').css({
			'display' : 'none'
		});
	});
	
        $('A[rel="external"]').click( function() {
                window.open( $(this).attr('href') );
                return false;
        });
	
});

