
$(document).ready(function(){
	
	$('.slide').cycle({
		fx:    'fade', 
		speed:  3000 /*,
		pause:	1*/
	});
	
	$("a#aboutlink").toggle(
		function(){
			$("div#abouttext").show("slow");
		},
		function(){
			$("div#abouttext").hide("slow");
		}
	);
		
});




//////////////////////////////////// Fix IE6 Flickering

function fixIE6flicker(fix) {
	try {
		document.execCommand("BackgroundImageCache", false, fix);
	} catch(err) { }
}
fixIE6flicker(true);



