$(document).ready(function() { 
	$('.pic-1').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence'
	});
});
$(document).ready(function() { 
	$('.pic-2').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence'
	});
});
$(document).ready(function() { 
	$('.pic-3').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence' 
	});
});
$(document).ready(function() { 
	$('.AlinkS').hover( function() {
		$(this).children('.t').css('background-position', 'bottom left');
		$(this).children('.b').css('background-position', 'bottom left');
		$(this).children('a.sub-nav').css('background', '#9998AC');
		$(this).children('a.sub-nav').css('color', '#221D55');
	  }, function() {
		$(this).children('.t').css('background-position', 'top left');
		$(this).children('.b').css('background-position', 'top left');
		$(this).children('a.sub-nav').css('background', '#DCDCDC');
		$(this).children('a.sub-nav').css('color', '#221D55');
	});
});

