/*-----------------------------------------------------------------------------

    Ashford Education : Jquery Actions
	Ben Falk - Web Advanced

------------------------------------------------------------------------------*/
		
$(document).ready(function() {

	/* External links */
	$('#body .right a').filter(function() {
	  return this.hostname && this.hostname != location.hostname && !/(.*)\.pdf$/.test(this.href);
	}) .after('<img src="resources/images/icon-external.gif" alt="external link" class="external" />');

	
	/* Slideshow */		
	$('#slideshow').cycle({ 
		timeout: 5000,
		speed:  800
	});
	
});

