$(document).ready(function() {
	$('#slideshow').cycle({ 
    fx:     'fade', 
    speed:  1000,
    timeout: 3000,
	next:   '#slideshow',
    pager:  '#nav',
	next: '.next',
    prev: '.prev',
    pagerAnchorBuilder: function(idx, slide) {
        // return selector string for existing anchor 
        return '#nav li:eq(' + idx + ') a';
    }
	});

	$('#nav li a').click(function() { 
    	$('#slideshow').cycle('pause');
		$('.hometxtimg').addClass('rendrevisible');
	});
	
});
