//Scroll the slideshow//

$(document).ready(function(){  
   $('.slideshow').cycle({  
      fx: 'scrollLeft',  
      speed: 1200,  
      timeout: 5000  
   });  
});  

//Fade in the text//

$(function() {
 $('#content').hide();
 setTimeout(function() {
 $('#content').fadeIn(2400);
 },300);                        
 
 });
 
 //Fade in the navigation//
 
 $(function() {
 $('#nav').hide();
 setTimeout(function() {
 $('#nav').fadeIn(2400);
 },2000);                        
 
 });
 
 //Fade in the frame//
 
 $(function() {
 $('#framecontainer').hide();
 setTimeout(function() {
 $('#framecontainer').fadeIn(2400);
 },300);                        
 
 });

 
 




