$(function() {
$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
    $(pager).find('li').removeClass('activeLI') 
        .filter('li:eq('+currSlideIndex+')').addClass('activeLI'); 
}; 

    $('#slideshow').cycle({
        speed:       200,
        timeout:     4000,
        pager:      '#tabs',
        pagerEvent: 'mouseover',    
        cleartype:  1, // enable cleartype corrections 

				pauseOnPagerHover: true,
		    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#tabs li:eq(' + idx + ')'; 
    } 
	
    });	
	$('#slide_1_content').mouseover(function() { 
    $('#slideshow').cycle('pause'); 
});
	$('#slide_2_content').mouseover(function() { 
    $('#slideshow').cycle('pause'); 
});
	$('#slide_3_content').mouseover(function() { 
    $('#slideshow').cycle('pause'); 
});

});
