$(document).ready(
	
	//image fading
	function(){
		$('.fade').innerfade({
			speed: 1000,
			timeout: 6000,
			type: 'sequence',
			containerheight: '327px'
		});
				
	//link colour fading	
	$("a").mouseover(
	   	function(){
			$(this).colorBlend([{fromColor:"agrey", toColor:"white", param:"color", cycles:1, isFade:false, duration:275}]);
		});
 
	$("a").mouseout(
		function(){
			$(this).colorBlend([{fromColor:"white", toColor:"agrey", param:"color", cycles:1, isFade:false, duration:275}]);
		});	
});