
$(document).ready(function() {

    $('.centertop')
		.before('<div id="nav">') 		
		.cycle({
		fx: 'scrollLeft',
    timeout: 4000,
		speed:300, 
    pager:  '#nav',
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<a href="#" class=nonActiveSlide><div style="width:20px; float:left"><li></li></div></a>'; 
    },
//        return '<a href="#" style=""><img src="images/home_gallery_circle_white.gif" width="6" height="6"  /></a>';
//		updateActivePagerLink: function(idx, slide) { 
//        return '<a href="#"><img src="images/home_gallery_circle_white.gif" width="6" height="6" /></a>'; 
//    }		
		 		 				 
	});
});


