$(document).ready(function(){
/**** Featured Projects slideshow *****/

  $("#scroller").scrollable({circular: true, speed: 500}).autoscroll({autoplay: true, interval: 5000});
  
  /**** Homepage Slideshow ****/

  $('.home_banner').slideShow({
    interval: 5
  });
    $(".slide").hover(
    function(){
    $('.slide_text').animate({right:'0px'},'slow');
    },
    function() {
    $('.slide_text').animate({right:'-155px'},'slow');
  });
  $('li.page:first').addClass('selected');

  
});