$(function(){
	// for navigation
	$(".list  li:first").css("padding-top","0px");
	$(".list  li:first-child").css("padding-top","0px");
	$(".list  li:last-child").css("border-bottom","none");

	//for schedule
	$("#schedule h3.current").css("border-top","none");
	
	//for blog and schedule
	$("#blog .post-content .post:first-child h3.headline, .post-nav > h3.headline:first-child").css("border-top","none");

	//for item
	$("#item .post:last-child").css("border-bottom","none").css("padding-bottom","0px");
	$(".thumb .image ul li:last-child").css("padding-right","0px");
	

	//for mail
	$('.mail').each( function() {
		var e = $(this).html().split(' ').join('@');
		$(this).attr('href', 'mailto:' +e  ).html(e);
	});

	//for index
	$('ul#slide').innerfade({
		speed: 1000,
		timeout: 7000,
		type: 'random',
		containerheight: '420px'
	});

});
