// slider

$(function() {
		$('.topsub_btn').hover(function() { 									
    	$('#slideshow, #slideshow2').cycle('pause');},
	function () {
        $('#slideshow, #slideshow2').cycle('resume');}	
	);
		
	$('#slideshow, #slideshow2').cycle({
         fx:     'fade',
        speed:  '300',
		timeout: 6000, startingSlide: 0,	
        pager:  '#nav',
		cleartypeNoBg: true,
        pagerAnchorBuilder: function(idx, slide) {
            return '#nav li:eq(' + (idx) + ') a';
        },
		pagerEvent: 'mouseover', 
    	pauseOnPagerHover: true,
    });
});

