	
	$(document).ready(function(){
		
			
		/* ! ---- Home Page Animations ---- */
		/* ---------------------------------------------------- */
		
		var current = 0;
		
		/* Images */
		var $imgs = $('.bgimg');
		$imgs.hide();
		$imgs.eq(current).fadeIn('slow');
		
		/* Copy */
		var $box = $('.fact');
		$box.hide();
		$box.eq(current).show();
		
		/* function to fade Images and Copy in over a specified time */
		function fadeContent(){
					
				$imgs.eq(current).hide();
				$box.eq(current).hide();
				
				if ( current < ($imgs.length - 1) ) {
					current++;
				} else {
					current = 0;	
				}
				
				$imgs.eq(current).fadeIn('slow');
				$box.eq(current).show();
			}
		
		window.setInterval(fadeContent, 6000);
				
	
	});
