//footerarea

/*
jQuery(function() {
 var row = 4;
 var maxHeight = 0;
jQuery("#FooterRight dl").each(function(i) {
if(maxHeight < jQuery(this).height()) {
maxHeight = jQuery(this).height();
}
jQuery(this).addClass("row");
if(i%row==row-1) {
jQuery("#FooterRight dl.row").height(maxHeight).removeClass("row");
maxHeight=0;
}
})
jQuery("#FooterRight dl.row").height(maxHeight).removeClass("row");
});
*/
//indeitems
jQuery(function() {
var dlmaxHeight = 0;
jQuery(".indexitemtext p").each(function() {
	if(dlmaxHeight < $(this).height()) {
 	dlmaxHeight = $(this).height();
		}
	}).height(dlmaxHeight);
});

//soukaikomati original
jQuery(function() {
var komachiHeight = 0;
jQuery(".komachidd").each(function() {
	if(komachiHeight < $(this).height()) {
 	komachiHeight = $(this).height();
		}
	}).height(komachiHeight);
});

//ordertable
jQuery(function() {
jQuery(".ordertalbeA tr:even td").css("background","#fff6d1");
jQuery(".ordertalbeB tr:even td").css("background","#edffd1");
});

//PageTop
/*
jQuery(function() {

jQuery(window).scroll(function() {
	jQuery("#FooterBt").css("display","block");
	jQuery("#FooterContents").css("padding","1em 0");
 });

});
*/
