/* JAVASCRIPT DOCUMENT
==================================*/
$(function(){
	$("#nav li").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
	$("ul#rotation").innerfade({
		speed: 1000,
		timeout: 7000,
		type: "sequence",
		containerheight: "361px"
	});
});
