/**********************
 * @author Pernilla   *
 **********************/
$(function() {
		$('#slideshow').after('<ul id="nav">').cycle({ 
	    fx:     'fade', 
	    speed:  'slow', 
	    timeout: 0, 
	    pager:  '#nav', 
	     
	    // callback fn that creates a thumbnail to use as pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
	        return '<li><a href="#"><img src="' + slide.src + '" width="115" height="54" /></a></li>'; 
	    }
	});
	
	$('#slideshow').cycle({     cleartype:  1  });
});



