﻿//*************************************************************************************
// File     : wblu_functions.js
// Version  : 1.0
// Requires : jquery.js (version 1.2.6+), braingnat.js (version 0.0.7+)
// Author   : Kyle Weems (ksw)
// Origin   : mindfly.com
// Created  : October 3, 2008
// Modified : November 3, 2008
// Purpose  : A set of site-specific functions for Wild Blueberries.
//*************************************************************************************

$(document).ready(function() { activationSequence(); });

function activationSequence() {
    setContentHeight();
    stickyList();
    removeStuck();
}

function removeStuck() {
    $('.catalogWrapper').bind('mouseover', function() {
        $('.stuck').removeClass('stuck');
    });
}
