/*sIFR
--------------------*/

var helvetica = {
    src: 'flash/HelveticaNeue.swf'
  };
  
sIFR.activate(helvetica);

  sIFR.replace(helvetica, {
    selector: 'h1, .contentheading, .componentheading, .category, .categorytitle'
	 ,wmode: 'transparent'
    ,css: {
      '.sIFR-root': { 'color': '#1f3684'  }
    }
    ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#d0cbb9'
        ,strength: 2
      }
    }
  });
  
  sIFR.replace(helvetica, {
    selector: 'h2'
	 ,wmode: 'transparent'
    ,css: {
      '.sIFR-root': { 'color': '#1f3684', 'text-transform': 'uppercase', 'font-weight': 'bold'  }
    }
  
  });
  
    sIFR.replace(helvetica, {
    selector: 'ul.quick-links li.involved, ul.quick-links li.events'
	 ,wmode: 'transparent'
    ,css: [
      '.sIFR-root { color:#3a8590; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #3a8590; }'
      ,'a:hover { color: #1f3684; }'
	  
    ]
	 ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#eae8cf'
        ,strength: 2
      }
    }
  
  });
  
  
/*Slideshow
--------------------*/

$(document).ready( 
						
	function(){ 
		$('ul.slideshow').innerfade({ 
			speed: 'slow', 
			timeout: 5000, 
			type: 'sequence', 
			containerheight: '345px' });
		
	});