$(function() {
	$('.banner .slides').cycle({ 
    fx: 'scrollRight', 
    random:  1,
	timeout: 8000
});
	
	
	$('.news_list li').each(function() {
		$(this).attr('title', $(this).attr('title').replace('-', ' '));
		$(this).qtip({
			position: {
				corner: {
					target: 'topLeft',
					tooltip: 'bottomLeft'
				},
				adjust: {
					x: 24,
					y: 10
				}
			},
			show: 'mouseover',
			hide: 'mouseout',
			style: { 
				width: 'auto',
				padding: '0 5px',
				background: '#9bc2b9',
				color: 'white',
				textAlign: 'center',
				tip: {
					corner: 'bottomLeft',
					color: '#9bc2b9',
					size: {
						x: 8,
						y : 8
					}
				},
				border: {
					width: 3,
					radius: 3,
					color: '#9bc2b9'
				},
				name: 'light' // Inherit the rest of the attributes from the preset dark style
			}			
		});
	});	
});
