$(document).ready( function() {
 	// Append Teaser Controls
 	if ($('#teasers ul li').size() > 1) {
	 	$('#teasers ul li:eq(0)').before(
		     	'<li class="control-pages"><h2 style="margin-top: 0;">Finalist categories</h2></li>'
	 	);
 	}
 	
 	// Initiate Cycle Plugin     	
	$('#teaser-list').cycle({ 
	    timeout: 0, 
	    speed:   2000,
	    fx: 'scrollLeft',
	    pager: '#teasers ul li.control-pages',
	    pause: true,
	    fit: true,
	    containerResize: true,
	    cleartypeNoBg: true,
	    cleartype: true,
	
            // callback fn that creates a thumbnail to use as pager anchor 
            pagerAnchorBuilder: function(idx, slide) { 
               if ( idx == 0 ) {
                  return '';
               } else {
                  return '<a href="#"><b>' + $('#teasers ul li:eq(' + idx +') h2').text() + '</b></a><br />';
               } 
            }
	});

	// Pause on hover of Prev/Next controls	
	$('#teaser-controls .control-next, #teaser-controls .control-prev').bind('mouseover mouseout', function(e) {
		var action = 'pause';
		if (e.type == 'mouseout') {
			action = 'resume'
		}
		$('ul#teaser-list').cycle(action);
	});
	
	// Outline Fix
	$('#teaser-controls a').bind('click', function(e) {
		$(this).blur();
	});
});