$(document).ready(function() {

	// CLEAR SIGN UP FORM
	$('#gform_1').append($('<div class="clear"></div>'));
	
	// PREPEND ONTO BOTTOM 1H
	$('#brpwp_wrapper-3 h1').prepend('<span>Recent</span>');
	$('#linkcat-7 h1').prepend('<span>Benefits of an</span>');
	$('#text-4 h1').prepend('<span>Frequently</span>');
	
	// ADD CAPS CLASS
	$('.bottom h1').addClass('caps','addClass');
	
	// ADD EXTRA LINKS
	$('#brpwp_wrapper-3 h1').wrap('<a href="http://www.nevadaonshoretrust.com/read-articles/" />');
	$('#linkcat-7 h1').wrap('<a href="http://www.nevadaonshoretrust.com/explore-benefits/" />');
	$('#text-4 h1').wrap('<a href="http://www.nevadaonshoretrust.com/ask-a-question/" />');
	
	// ACCORDION
		$('.odd-faq-question').click(function(){
			$(this).next().toggle();
			$(this).toggleClass('open','addClass');
		});
		$(".odd-faq-answer").hide();
		
	// LOOP THROUGH HOMEPAGE LINKS
	function InOut( elem )
	{
	 elem.delay()
	     .fadeIn()
	     .delay('10000')
	     .fadeOut(
	               function(){
	                   if(elem.next().length > 0)
	                   {InOut( elem.next() );}
	                   else
	                   {InOut( elem.siblings(':first'));}

	                 }
	             );
	}

	$(function(){
	$('.home #container .content li').hide();
	InOut( $('.home #container .content li:first') );

	});
	
	// FRONTPAGE FANCYBOX VIDEO
	$(".home .video a").fancybox({
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	true,
			'overlayOpacity':   0.9,
			'overlayColor'  :   '#1A3545'
		});
		
	// FRONTPAGE FANCYBOX VIDEO
	$(".pageid-6 .video a").fancybox({
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	true,
			'overlayOpacity':   0.9,
			'overlayColor'  :   '#1A3545',
			'type'			:   'iframe'
		});

});




















