$(function() {
    $('#tabs1').cycle();
    
    $('#slideshow2').cycle({
        prev:   '#prev',
        next:   '#next',
        timeout: 0
    });
    
    $('#slideshow-1').cycle({
        delay: 2000,
        speed: 500,
        before: onBefore
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});

$(document).ready(function()
{
  $("div.category-container").mouseover(function ()
  {
    $(this).addClass("category-container-hover");
  });

  $("div.category-container").mouseout(function ()
  {
    $(this).removeClass("category-container-hover");
  });
});

$(document).ready(function(){

//Hide (Collapse) the toggle containers on load
$(".hide-tab").hide();

});