/* jquery.scripts.js */


$(document).ready(function($){
	
	$('#header').append('<a class="home" href="' + $('#header h1 a').attr('href') + '">home</a>');
	
	// create slideshow
	$('#hero ul').after('<ol id="nav-hero" />').cycle({
		timeout: 5000
		,speed: 1500
		,pager: '#nav-hero'
		,pagerAnchorBuilder: function(idx) {
			return '<li><a href="#">' + (idx+1) + '</a></li>';
		}
	});


	//hack links
	if (document.location.href.indexOf('devsite') != -1) { // only do this on the 'devsite' site ID
		$('a').each(function(){
			var $href_val = $(this).attr('href');
			$(this).attr('href', $href_val.replace('/media/media-room/', '/devsite/index.cfm/media/media-room/'));
		});
	}
	
});


/* EOF */

