$(document).ready(function() {
	$('a.delete').click(function(){
		if (confirm('Are you sure you want to delete this?')) {
			$('<form method="post"></form>')
				.attr('action', this.href)
				.appendTo('body')
				.submit();
			return false;
		}

		return false;
	});

	$('#slideshow').cycle({
		fx:      'fade',
		speed:   1500,
		prev:    '#prev',
		next:    '#next',
		//after:   onAfter,
		timeout: 3500
	});
	
	$('#slideshow.products').cycle('pause');
	
	$(".recipes .drink").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
	
});


