/* --------- JQUERY FUNCTIONS -------------*/
jQuery(document).ready(function() {
								
    jQuery('#mycarousel').jcarousel();
	
	 $('button').hover(function() {
      $(this).addClass('hoverme');
    }, function() {
      $(this).removeClass('hoverme');
    });

	
});



