var $j = jQuery.noConflict();

$j(document).ready(function() {

	// Fancybox settings for Surf Report iFrame

	$j('.surf').fancybox({
		'autoDimensions': true,
		'type': 'iframe',
		'width': 265,
		'height': 503,
		'scrolling': 'yes',
		'centerOnScroll': true,
		'showCloseButton': true
	});
	
	// Fancy Box settings for Main Gallery Page
	
	$j('#gallery-1 a').addClass('group');
	$j('#gallery-1 a').attr('rel', 'group');
	$j('#gallery-1 a.group').fancybox({  'titleShow': false });
	
	// Fancy Box settings for Recent Photos (Sidebar)
	
	$j('.wGallery a').addClass('recent');	
	$j('.wGallery a').attr('rel', 'group');
	$j('.wGallery a.recent').fancybox({  'titleShow': false  });	
	
	//  Cycle on the menu page
	
	$j('#menufeature').cycle({
		fx: 'fade',
		speed:    2000, 
	    timeout:  8000
	});

	
	
	$j('.drop').after('<a class="expand"></a>');
	

	$j('.expand').click(function(){
		$j('.drop').slideToggle('slow', function() { 
			$j('.expand').toggleClass('expanded');
		});
	});
	
	
	
	
	
		
		



	
});

