Cufon.replace("h1, h2, h3, h4, h5, #menu li a, a[rel='tag']", {hover: true});
ChiliBook.recipeFolder = "http://anonymousprogrammer.com/wp-content/themes/ap2/includes/js/chili/";
$(document).ready(function() {
	var the_style = {
		padding: 5,
		background: '#22262f',
		color:		'#aaa',
		textAlign:	'center',
		border: {
			width:	2,
			color:	'#444c5e'
		},
		tip:		true,
		name:		'dark'
	};
	$('.page_item, .cat-item')
		.children()
		.qtip({
			position: {
				corner: {
					tooltip: 'topMiddle', // Use the corner...
					target: 'bottomMiddle' // ...and opposite corner
				}
			},
			style: the_style
		});
	$('.image-overlay')
		.css({opacity : '0', display : 'block'})
		.hover(
			function () {
				$(this).stop().animate({opacity : '0.6'}, 400);
			}, 
			function () {
				$(this).stop().animate({opacity : '0'}, 400);
		});
});
