function activateSwitcher() {
	$('.bulletContent')
  .after('<div id="bulletSwitcher">')
  .cycle({
		fx:      'scrollLeft',
		speed:   '1500',
		timeout: 5000,
		pager:   '#bulletSwitcher', 
    pagerEvent: 'mouseover', 
    fastOnEvent: true,
    pause:   0,
    fit:          1,     // force slides to fit container 
    height:       '235',// container height (if the 'fit' option is true, the slides will be set to this height as well) 
    width:        '700'   // container width (if the 'fit' option is true, the slides will be set to this width as well) 
	});
}
