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

$(function() 
{
		

		$('#rotator .slidecontainer').cycle({
			fx:     'fade', 
	    	timeout: 7500,
	 		pause: 1,
			pauseOnPagerHover: 1,
	    	pager:  '#rotator-nav ul',
	    	pagerAnchorBuilder: function(idx, slide) { 
	        return '<li><a href="#"></a></li>'; 
	    	} 
		}); 
		
		//tabbed menu
		var tabContainers = $('#comment, #tellafriend-form');

		$('div.tabs ul.tabNavigation a').click(function () {
		        tabContainers.hide().filter(this.hash).show();

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

		        return false;
		    }).filter(':first').click();
		
		//toggle archives
		$("#2007, #2008, #2009").siblings().hide();
		  //toggle the componenet
		  $("#2007, #2008, #2009, #2010").click(function()
		  {
		    $(this).siblings().slideToggle(600);
		  });
		
		//add hand icon to event selectors
		$('.archives dt').hover(function() 
		{
	   		$(this).addClass('hand');
		}, function() {
			$(this).removeClass('hand');
		});

	   // video & media plugins
				 $('a.media-home').media({ width: 280, height: 175, type: 'swf' });	
				 $('.media').media( { width: 620, height: 380, type: 'swf' } );
		
		
		//open windows without embedding target="_blank"				
		$('a[rel="external"]').each(function() {
		$(this).attr('target', '_blank');
		});

	
});