/*
File: jquery.config.js
Copyright: (c) 2009 Brand Rich Media
Author: Brandon Neil Richards
Author URI: http://www.brandrichmedia.com/
*/
//callbacks


$(function() 
{
		$('#rotate-this').cycle({
        fx:      'fade',
        cleartype:  1,
        speed:	 250,
        timeout:  8000,
        pause:	  1,
        prev:    '#prev',
        next:    '#next'
    	});
    	
    	$('#scroll-box').cycle({
        fx:      'scrollUp',
        cleartype:  1,
        speed:	 2000,
        continuous:		0,
        pause:	  1,
        prev:    '#up',
        next:    '#down'
    	});
    	
    	//overlays
    	$("#intro a[rel], #sidebar-video a[rel], #vision-team img[rel], #vision-team a[rel], #coaches img[rel], #coaches a[rel]").overlay();
    	
    	//tabbed menu
	    var tabContainers = $('#vision-team, #coaches, #pastors');
		
		$('#tabNavigation ul.tabs a').click(function () {
		        tabContainers.hide().filter(this.hash).show();

		        $('#tabNavigation ul.tabs a').removeClass('selected');
		        $(this).addClass('selected');

		        return false;
		    }).filter(':first').click();
		    
		//open windows without embedding target="_blank"		
		$('a[class="external"]').each(function() {
		$(this).attr('target', '_blank');
		});
		//media plugins
		 $('a.media-overlay').media({ width: 640, height: 385, type: 'swf' });	
		 $('.media').media( { width: 590, height: 366, type: 'swf' } );
		$('.vimeo').media( { width: 620, height: 465, type: 'swf' } );
		



});
