// JavaScript Document
$(function(){
$(".family_of_id").each(function(i, elem) {
var txt = $(".family_of_id").text();
if(txt == "本店"){
$(this).addClass("honten");
}else if(txt == "杉並店"){
$(this).addClass("suginami");
}else if(txt == "練馬店"){
$(this).addClass("nerima");
}else if(txt == "赤羽店"){
$(this).addClass("akabane");
}else if(txt == "川口店"){
$(this).addClass("kawaguchi");
}else if(txt == "与野本町店"){
$(this).addClass("yonohonmachi");
}else if(txt == "朝霞台志木店"){
$(this).addClass("asakadaishiki");
}else if(txt == "川越店"){
$(this).addClass("kawagoe");
}
});
$(".family_text_detail img").each(function(i, elem) {
var src = $(this).attr('src');
// alert(src);
if(src == "http://www.bestselect.co.jp/file/images/q.gif"){
$(this).after('Q');
$(this).remove();
}else if(src == "http://www.bestselect.co.jp/file/images/a.gif"){
$(this).after('A');
$(this).remove();
}
});
// swipeboxを起動
$(function(){
$("a[rel^='prettyPhoto']").swipebox( {
'removeBarsOnMobile': false
});
});
});