var tooltips = {
	config:function(){
	$('#Button_PlanATrip').qtip({
		content: 'Use this feature to plan a trip by entering a start and end location. You may also specify time of day and additional options.',
		position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomMiddle'
			}
		},// position
		style: { 
			width: 200,
			padding: 5,
			background: '#f2f2f2',
			color: '#666',
			textAlign: 'center',
			'font-size':12,
			border: {
				width: 7,
				radius: 10,
				color: '#f2f2f2'
			},
			tip: 'bottomMiddle',
			name: 'dark' // Inherit the rest of the attributes from the preset dark style
		} // style
	}); // Button_FindServiceNearby
	$('#Button_FindServiceNearby').qtip({
		content: 'Use this feature to find what bus routes serve an area and where they go. Then you can plan a trip or find the next bus from that location.',
		position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomMiddle'
			}
		},// position
		style: { 
			width: 200,
			padding: 5,
			background: '#f2f2f2',
			color: '#666',
			textAlign: 'center',
			'font-size':12,
			border: {
				width: 7,
				radius: 10,
				color: '#f2f2f2'
			},
			tip: 'bottomMiddle',
			name: 'dark' // Inherit the rest of the attributes from the preset dark style
		} // style
	}); // Button_FindServiceNearby
	$('#Button_FindNearestStop').qtip({
	   content: 'Use this feature to find all the stops in an area, and to get more information on each stop such as what routes serve it, where it is located on the street and if there\'s a shelter.',
	   position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomMiddle'
			}
		},// position
		style: { 
			width: 200,
			padding: 5,
			background: '#f2f2f2',
			color: '#666',
			textAlign: 'center',
			'font-size':12,
			border: {
				width: 7,
				radius: 10,
				color: '#f2f2f2'
			},
			tip: 'bottomMiddle',
			name: 'dark' // Inherit the rest of the attributes from the preset dark style
		} // style
	});
	$('#Button_FindNextBus').qtip({
	   content: 'Lists the next four trips on all routes that serve stops in a selected area. Based on schedule information; not real-time.',
	   position: {
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomMiddle'
			}
		},// position
		style: { 
			width: 200,
			padding: 5,
			background: '#f2f2f2',
			color: '#666',
			textAlign: 'center',
			'font-size':12,
			border: {
				width: 7,
				radius: 10,
				color: '#f2f2f2'
			},
			tip: 'bottomMiddle',
			name: 'dark' // Inherit the rest of the attributes from the preset dark style
		} // style
	});
	}
}
$(tooltips.config);