/* newsticker script*/ 
$(document).ready(
		function(){
			$('#news').innerfade({
				animationtype: 'fade',		
				speed: 750,
				timeout: 4000,
				type: 'random',
				containerheight: '1em'
			});

	});



/* cycle script*/ 
$.fn.cycle.defaults.timeout = 6000;
$(function() {
   
    $('.slideimgs').before('<div id="nav" class="nav">').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 3000,
        pager:  '#slider_nav'
	});
});   




