// <![CDATA[
$(function() {
	// radius Box
	$('.box_radius').css({"border-radius":"8px", "-moz-border-radius":"8px", "-webkit-border-radius":"8px"});
	
	// Slider script
	$('#slideshow').cycle({
        fx:     'fade',
		Random: 1, 		
        speed:  'slow',
		cleartypeNoBg: 'true',				
        timeout: 5500,
        pager:  '#slider_nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#slider_nav li:eq(' + (idx) + ') a';
        }
    });
});


// ]]>


