// SHOW
function show(elementToShow) {
    $('#' + elementToShow).show();
}

// BULLET SWITCHER
function activateSwitcher() {
    $('.bulletContent').cycle({
        fx:      'fade',
        speed:   '300',
        timeout:  6000,
        next: '.bulletSwitcher a',
        pager:  '.bulletSwitcher',
        pause: 1
    });
}

