// I think this actually loads the cycle.js with specifics for this page

$(document).ready(function() {
    $('.rad')
    .before('<div id="nav">')
    .cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 1000,
		pause: 1,
		timeout: 5500,
		pager: '#nav'
	});
});
