$(document).ready(function() {
  $('#smile-mag-main').hover(function(){
    $('.smile-hover').fadeIn();
  },
  function(){
       $('.smile-hover').fadeOut();
     }
  );

  $('#find-us-map').hover(function(){
    $('#find-us-map-hover').fadeIn();
  },
  function(){
       $('#find-us-map-hover').fadeOut();
     }
  );

  $('#sponsorship-opportunity').hover(function(){
    $('#sponsorship-opportunity-hover').fadeIn();
  },
  function(){
       $('#sponsorship-opportunity-hover').fadeOut();
     }
  );
  jQuery('#mycarousel').jcarousel({
		// Configuration goes here
  });
  jQuery('#carousel-footer').jcarousel({
		scroll: 1
  });

});


