/******************************************************************************
 * Aperitivo Pizza Bar Global functions.
 * jQuery framework is required.
 * 
 * Author: Neal Krouse (krousen@comcast.net)
 *
 ******************************************************************************/

$(function() {
	$("#nav li:has(a)").each(function() {
		if ($("body").attr("id") != $(this).attr("id") + "_page") {
			$(this).addClass("js").hover(
				function() {
					$(this).stop(true, true).animate({
						top: "-6px"
						}, 500
					);
					$(this).children("a").animate({color: "#fff"}, 500);
				},
				function() {
					$(this).stop(true, false).animate({
						top: "0px"
						}, 300
					);
					$(this).children("a").animate({color: "#999"}, 500);
				}
			);
		}
	});
});

function rotate() {
	$("#pics").load("rotate.html", function() {
		$("#pics").cycle({
			fx: "fade",
			random: 1
		});
	});
}
