/*
Ustweet Top
*/

$(function(){
	//検索ボックスフォーカス
	$("#q").fieldtag();
	
	//チャンネル高さを揃える
	//fixHeight_channels();
	for (i=0; i<20; i++) {
		$(".title" + i).flatHeights();
		$(".desc" + i).flatHeights();
	}
	//コンテンツとサイドの高さを揃える
	fixHeight_content_side();
	
	//ピックアップ
	$("h3.pickup").append('<img src="' + site_url + 'images/channel_pickup_icon.gif" width="34" height="12" class="pickupIcon" />');
	
	//lazyload
	$("#content_body .content_entry img").lazyload({
			placeholder : "http://ustweet.net/images/spacer.gif",
			effect : "fadeIn"
		});
});


