﻿$('nav.menu ul a').hover(function() {
	$(this).stop(true, false).animate({
		opacity: 0
	}, {
		duration: 300
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity: 1
	}, {
		duration: 500
	})
});

$('nav.menu ul li.hana a').hover(function() {
	$(this).stop(true, false).animate({
		opacity: 0.7
	}, {
		duration: 300
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity: 1
	}, {
		duration: 500
	})
});


$(document).ready(function() {
	jQuery.fn.center = function () {
		this.css("min-height",($(window).height()) + "px");
		return this;
	}
	$(".alla").center();
});
