// JavaScript Document
$(window).load(function() {
	$(".logo").hide();
	$("#slides").hide();
 $(".logo").fadeIn("slow");
		$('#slides').cycle({
		fx: 'fade',
		height: 'auto',
		speed: 1000,
		random: 1,
		sync: 1, 
		cleartype:  false,
    cleartypeNoBg: false ,
		timeout: 8500
	}).fadeIn("fast");
});

