$(document).ready
(
    function()
    {
        //var base_path = "code/jQuery/Plugin/cycle/";  
        
        //add_script("jquery.cycle.all.min.js", base_path);
        //add_css("jquery.cycle.css", base_path);
        
        $('#slideshow').cycle({
	        speed:       400,
	        timeout:     7000,
	        pager:      '#nav',
	        pagerEvent: 'mouseover',
			pauseOnPagerHover: true
	    });
    }
);