$(function() {
	//scroll
	$('a[href^=#]').click(function() {
	$.scrollTo($($(this).attr("href")), {
			duration: 500
		});
		return false;
	});
	//rollover
	$('.on,.to-pagetop img,#menu img').rollover();
	
	setEqualHeight($(".footer-link"));
	$(".post-inner p:last-child").css("margin-bottom", "0");
});

//social
/*
$(function() {
	$('.facebook_like').socialbutton('facebook_like', {
		button: 'button_count'
	});
	$('.hatena').socialbutton('hatena', {
        button: 'simple'
    });
	$('.twitter').socialbutton('twitter', {
		button: 'none',
        text: 'YAMATEI｜大型プランター・テラコッタポット・インテリア鉢 輸入元'
	});
	$('.google_plusone').socialbutton('google_plusone', {
		lang: 'ja',
		size: 'medium',
		count: false
	});
});
*/

function setEqualHeight(columns){
	var tallestcolumn = 0;
	var currentHeight;
	columns.each(
		function(){
			currentHeight = $(this).height();
			if(currentHeight > tallestcolumn){
				tallestcolumn = currentHeight;
			}
		}
	);
	columns.height(tallestcolumn);
}


