/* Start Main Homepage Slideshot with Fade Effect, textnav, and control arrows */
jQuery(document).ready(function() {
	
	
     $('#slideshow').cycle({
    	        fx:     'fade',
    	        speed:  500,
    	        timeout: 6000,
				pause: true,
    	        pager:  '#slideshownav',
                next:   '#slideshownext',
                prev:   '#slideshowprev',
                cleartype:1,
                cleartypeNoBg:1,
    	        pagerAnchorBuilder: function(idx, slide) {
    	            // return sel string for existing anchor
    	            return '#slideshownav li:eq(' + (idx) + ') a';
    	        }
        });
      $('li a').click(function() {   $('#slideshow').cycle('pause');   $('#button_pause').fadeOut(300); $('#button_play').fadeIn(200);   });
      $('.slide').click(function() {   $('#slideshow').cycle('pause'); 	$('#button_pause').fadeOut(300); $('#button_play').fadeIn(200);    });
	  $('#pauseButton').click(function() {  $('#slideshow').cycle('pause'); $('#button_pause').fadeOut(300); $('#button_play').fadeIn(200);  });
	  $('#resumeButton').click(function() {  $('#slideshow').cycle('resume'); $('#button_pause').fadeIn(200); $('#button_play').fadeOut(200);  });
	  
	  
	  
});


