var flavors = [];
var descriptions = [];

$(document).ready(function() {
	$("div.day").each(function(){
		var _tip = "leftMiddle";
		var _target = "rightMiddle";
		var _tooltip = "leftMiddle";
		
		if($(this).hasClass("wednesday") || $(this).hasClass("saturday")){
			_tip = "rightMiddle";
			_target = "leftMiddle";
			_tooltip = "rightMiddle";
		}

		$(this).find("a").each(function(){

			$(this).qtip({
				show: 'mouseover',
				hide: 'mouseout',
				style:{
					width: 300,
					padding: 5,
					background: '#FEF0D9',
					color: 'black',
					textAlign: 'center',
					border: {
						width: 7,
						radius: 5,
						color: '#EF5DA2'
					},
					tip: _tip,
					name: 'red'
				},
				position: {
					corner: {
			    		target: _target,
			    		tooltip: _tooltip
					}
				}
			});
		});
	});
	$("a.title:contains('cure')").css("color","#ef5da2");
	$("a.title:contains('cure')").css("font-weight","bold");
});
