jQuery(document).ready(function(){
	
	// Services tabs
	jQuery(".tab:not(:first)").hide();

	//to fix u know who
	jQuery(".tab:first").show();
	
	jQuery(".htabs a, .next-service-tab").click(function(c) {
		
		stringref = jQuery(this).attr("href").split('#')[1];
		jQuery('.tab:not(#'+stringref+')').hide();
		jQuery('.tab#' + stringref).fadeIn(300);
		jQuery(".htabs a").removeClass('selected');
		jQuery('#'+stringref+'-tab').addClass('selected');
		return false;
		
	});
	
	// Services qTips
	$('.term').qtip({
		style: {
			name: 'light',
			tip:true,
			color:'#000',
			background: '#fff',
			width:305,
			border: {
				width: 7,
				radius: 5,
				color: '#ccc'
			},
			classes: {
				'content': 'uncommon-tip-content'
			}
		
		},
		position: {
	      corner: {
	         target: 'topRight',
	         tooltip: 'bottomLeft'
	      }
		}
	})
		
});