jQuery(document).ready(function(){

$('#gallery .imgs').cycle({ 
      fx:     'fade', 
      speed:  'slow', 
      timeout: 4000, 
      pager:  '#gallery-nav',
      pause:   1
  });

  jQuery('#content-gallery').jcarousel();

$(function () {
		var tabContainers = $('.control-box');
		tabContainers.hide().filter(':first').show();	
                    
		$('.control-tabs-small li a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash+"-box").show();
			$('.control-tabs-small li a').removeClass('active');
			$(this).addClass('active');
			return false;
			}).filter(':first').click();
	});
	});
