jQuery(function($) {

//style
$('#ddnavi-rensaiList li:last').css('margin',0);
$('#ddnavi-reviewList div.list-wrapper:last').css('margin-bottom','6px');
$('#ddnavi-newList div.list-wrapper:last').css('margin-bottom','6px');
$('#ddnavi-bnrArea li:last').css('margin',0);

//contents height
var lc = $('#ddnavi-lContsArea').height();
var rc = $('#ddnavi-rContsArea').height();
var newH = $('#ddnavi-newList').height();
var commentH = $('#ddnavi-commentList').height();
if(rc <= lc){
var rh = lc-rc;
$('#ddnavi-newList').css('height',newH+rh);
}else if(rc >= lc){
var rh = rc-lc;
$('#ddnavi-commentList').css('height',commentH+rh);
}

//genru pulldown
$(document).ready(function(){	
	$('#ddnavi-newList .btn img').click(function() {
		$(this).next().slideToggle();
	}).next().hide();
});

});
