$(document).ready(function() {
	var COOKIE_NAME = 'baxterBrewing';
	var options = {
		path : '/',
		expires : 30
	};

	if ($.cookie(COOKIE_NAME) != 'yesim21') {
		$("#check-age").modal( {
			onClose : function(dialog) {
				dialog.data.fadeOut('slow', function() {
					dialog.container.hide('slow', function() {

						$.modal.close();

					});
				});
			}
		});
	}

	$("a.simplemodal-close").click(function() {
		$.cookie(COOKIE_NAME, 'yesim21', options);
		return false;
	});

	$('#slideshow').cycle( {
		timeout : 4000
	});

	$('#nav li').hoverIntent(function() {
		$('.dropbox', this).fadeIn();
	}, function() {
		$('.dropbox', this).fadeOut();
	});

});
