$(function(){

	var pathname = location.pathname;

		$('#graphic-slideshow img:gt(0)').hide();
		setInterval(function(){
			$('#graphic-slideshow :first-child').fadeOut()
				 .next('img').fadeIn()
				 .end().appendTo('#graphic-slideshow');}, 
			6000);
			
		$('#graphic-sidebar img:gt(0)').hide();
		setInterval(function(){
			$('#graphic-sidebar :first-child').fadeOut()
				 .next('img').fadeIn()
				 .end().appendTo('#graphic-sidebar');}, 
			8000);
			
		$('#graphic-sidebar-text img:gt(0)').hide();
		setInterval(function(){
			$('#graphic-sidebar-text :first-child').fadeOut()
				 .next('img').fadeIn()
				 .end().appendTo('#graphic-sidebar-text');}, 
			8000);
			
		$('#testimonial-slideshow img:gt(0)').hide();
		setInterval(function(){
			$('#testimonial-slideshow :first-child').fadeOut()
				 .next('img').fadeIn()
				 .end().appendTo('#testimonial-slideshow');}, 
			6000);
	
	$('#graphic-single').delay('1024').fadeIn('512');
		
});
