jQuery(document).ready(function(){
	
	// Homepage slider
	$("#work-slider").easySlider({
		auto:true,
		speed:200,
		pause:6000,
		continuous: true
	});


	// Homepage qTips
	$('.term').qtip({
		style: {
			name: 'light',
			tip:true,
			color:'#000',
			background: '#fff',
			width:305,
			border: {
				width: 7,
				radius: 5,
				color: '#254466'
			},
			classes: {
				'content': 'uncommon-tip-content'
			}
		
		},
		position: {
	      corner: {
	         target: 'topRight',
	         tooltip: 'bottomLeft'
	      }
		}
	})
	
});