$(document).ready(
		
		
	
		
	function(){
		/* 	The fade function for pngs is borked in IE. This is not a jQuery problem
			but actually to do with alpha transparency and filters so we'll just
			pick one at random on each page instead.
		*/
		if ($.browser.msie && $.browser.version >= 6 ) {
			 var randomNum = Math.floor(Math.random()*3);
			 $('#availablecolours div:eq(' + randomNum + ')').css("display", "block");
		} else {
			$('#availablecolours').innerfade({
				speed: 750,
				timeout: 2000,
				type: 'random',
				containerheight: '123px'
			});
		}
});