	
// Anchor (Deslisamento suave dos elementos com o atributo .anchorLink)
$(document).ready(function() {
    $('#slideshow').cycle({
        fx:             'scrollLeft', // name of transition effect (or comma separated names, ex: fade,scrollUp,shuffle) 
		timeout:         6000,  // milliseconds between slide transitions (0 to disable auto advance)
        pager:  '#number',
		slideExpr: 'img',
		next:   '#next', 
		prev:   '#prev' 
    });



$("#sidebar li, .box2 li, .box3 li").hover(
function(){ $(this).animate({ textIndent: "10px" }, 500 );},
function(){ $(this).animate({ textIndent: "0px" }, 500 ); });


});
