function divTo(theDiv,delay)
{delay=typeof(delay)!='undefined'?delay:200;$("#Center").fadeOut(delay,function(){var theDivContents=$(theDiv).html();$("#Center").html(theDivContents);$("#Center").fadeIn(delay);});return false;}
function divFromTo(sourceDiv,TargetDiv,delay)
{delay=typeof(delay)!='undefined'?delay:200;$(TargetDiv).fadeOut(delay,function(){var theDivContents=$(sourceDiv).html();$(TargetDiv).html(theDivContents);$(TargetDiv).fadeIn(delay);$("a[rel^='prettyPhoto']").prettyPhoto();});return false;}
function intro()
{divTo("#intro",1500);divFromTo("#About","#AboutCode",1250);divFromTo("#Ka","#KaCode",1250);divFromTo("#Services","#ServicesCode",1250);divFromTo("#Contact","#ContactCode",1250);divFromTo("#Tweets","#TweetsCode",1250);divFromTo("#Work","#WorkCode",1250);divFromTo("#Support","#SupportCode",1250);}
jQuery(document).ready(function($){setTimeout("intro()",0);})
