$(document).ready(function(){
		// Scrolling News
		$jScroller.add("#scrollingNewsContainer","#scrollingNews","up",1,true);
		$jScroller.start();
		//Tool Tips
		$('.category').qtip({
			//content: 'This is an active list element',
			show: 'mouseover',
			hide: 'mouseout',
			style: {
				tip: 'bottomLeft', 
				width: 200,
				padding: 5,
				background: '#687dc5',
				color: '#fff',
				"font-size": 14,
				"line-height" : 1.4,
				textAlign: 'left',
				border: {width: 7,radius: 5,color: '#0e2777'}
			},
			position: {
				corner: {
					target: 'center',
					tooltip: 'bottomLeft'
				}
			}
		})
		
	 });

