﻿$(function() {
	$(".hover").hover(function() {
		$(this).stop(true,true).fadeTo(100, 0.7)
	},function() {
		$(this).stop(true,true).fadeTo(200, 1.0)
	});
});

//bigger-link
	$(function(){
		$('.bigger-link li').biggerlink();
	});
	
