// JavaScript Document
   $("a.menu").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
   $("#logo").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
   
  $('#s1').cycle({ 
    fx: 'fade', speed: 300, timeout:  200, autostop: 7, end: onAfter,
	shuffle: { 
        top:  10, 
        left:  360 
    }
});
  function onAfter() { 
    $("#s1").fadeOut(500);
	$("#hometxt").css("visibility","visible"); 
	$("#hometxt").fadeIn(500);
}
