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

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


