//alert("common");


$(function(){

// table偶数行の色を設定
$('.doc_rec table tbody').each(function(){
$(this).find('tr:odd').addClass('even');
});

$('.doc_rec table thead tr:last-child').addClass("btm");
$('.doc_rec table tfoot tr:first-child').addClass("top");
$('.nav_category li ul li:last-child').css({border:"none",paddingBottom:0});
$(".doc_rec .price").prepend("<span class=\"icon\">¥</sapn>");
});




function fukidashi (e1,e2) {

$(e2).css({
　display:"none",
　position:"absolute"
});

$(e1).each(function(i){
　$(this).mouseover(function(){
　　$(e2).eq(i).css({display:"block"});
　}).mouseout(function(){
　　$(e2).eq(i).css({display:"none"});
　}).mousemove(function(e){
　　$(e2).css({
　　　"top":e.pageY+10+"px",
　　　"left":e.pageX-220+"px"
　　});
　});
 })

}
