$.fn.cycle.defaults.timeout = 6000;
$(function() {
    // run the code in the markup!
    $('table pre code').not('#skip,#skip2').each(function() {
        eval($(this).text());
    });
    

	
	$('#news').cycle({
    fx:     'fade',
    speed:   300,
    timeout: 3000,
    next:   '.homebkg',
	cleartype:true,
    cleartypeNoBg: true,
    pause:   1
	});
});

