/*FB.init({ 
  appId:'158578597527919', cookie:true, 
  status:true, xfbml:true 
});*/

$(document).ready(function(){
  
  $('#slide_pager').show();
  $('#slides').cycle({
    fx: 'fade',
    pager: '#slide_pager'
  });
  
  $(function () {
  // IE6 doesn't handle the fade effect very well - so we'll stick with
  // the default non JavaScript version if that is the user's browser.
  if ($.browser.msie && $.browser.version < 7) return;
  
  $('a.learn_more')
    .append('<span class="hover" />').each(function(){
      var $span = $('> span.hover', this).css('opacity', 0);
      $(this).hover(function () {
        $span.stop().fadeTo(500, 1);
      }, function () {
        $span.stop().fadeTo(500, 0);
      });
    });
  });
  
});

