jQuery(document).ready(function(){
	jQuery('#slideshow').fadeSlideShow({
		width:634, // width of your slideshow
		height:397, // height of your slideshow
		speed: 'slow', // speed of the transition effect
		interval:5000 // interval time between image change
	});
});

$(function(){  
$("#digidesktop").children("span").hide();
 $("#digidesktop").hover(function(){  
  $(this).children("span").fadeIn();  
 }, function(){  
  $(this).children("span").fadeOut();  
 })    
});  

$(function(){  
$("#bottom-1").children("span").hide();
 $("#bottom-1").hover(function(){  
  $(this).children("span").fadeIn();  
 }, function(){  
  $(this).children("span").fadeOut();  
 })    
});  

$(function(){  
$("#bottom-2").children("span").hide();
 $("#bottom-2").hover(function(){  
  $(this).children("span").fadeIn();  
 }, function(){  
  $(this).children("span").fadeOut();  
 })    
});  

$(function(){  
$("#bottom-3").children("span").hide();
 $("#bottom-3").hover(function(){  
  $(this).children("span").fadeIn();  
 }, function(){  
  $(this).children("span").fadeOut();  
 })    
});  
// JavaScript Document
