$(document).ready(function() {
	// apply cycle plugin to home slideshow
    $('.home-hero .slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		next:   '#next2', 
	    prev:   '#prev2',
		pager:  '#nav',
		speed:	3000  // speed of the transition (any valid fx speed value)
		
	});
	
	// open links marked external in new windows
	
	
	$('a[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
	
	$('#s4') 
	.before('<div id="nav">') 
	.cycle({ 
    fx:     'turnDown', 
    speed:  'fast', 
    timeout: 0, 
    pager:  '#nav' 
	});
	
});
