$(document).ready(function(){

/*	
	$('li', '#menu').mouseenter(function(){
		$('ul', this).slideDown('fast');
	});
	$('li', '#menu').mouseleave(function(){
		$('ul', this).stop(true, true).hide();
	});
	
	$('#mapsDiv').easySlider({
		controlsId: 'mapsControls'
	});
	
	$('#vidbox').jqvideobox();
*/
	
	$('input[type=text]').click(function() {
		$(this).val('');
	});
	
	$('a.overlay_link[rel]').overlay({
		 mask : 'black'
		,effect : 'apple'
		,onBeforeLoad : function() {
			var wrap = this.getOverlay().find('.contentWrap');
			wrap.load(this.getTrigger().attr('href'), {}, function() {
				/* */
			});
		}
	});
});

