$(function(){
    // Tweetボタン
	$('.ShopLink a:eq(0)').click(function() {
        var localUrl = ""+window.location;
        if(localUrl.indexOf('#') > 0) {
            localUrl = localUrl.substr(0,localUrl.length -1);
        }
        var serviceUrl = 'http://twitter.com/home?status=' +
        encodeURIComponent( $("div.Shopname h3").text()+ " " + localUrl);
        window.open(serviceUrl, "_blank");
        return false; 

	});

    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    $('#Topics .Block').each(function(i) {
        temp.push(this);
        if (i % 2 == 1) {
            sets.push(temp);
            temp = [];
			$(this).css('margin-right','0px');
        }
    });
    if (temp.length) sets.push(temp);

    /* 各組ごとに高さ揃え */
    $.each(sets, function() {
        $(this).flatHeights();
    });
});

