$(document).ready (function () {							 
var count_num = 0;
var before_num = 0;
var shop_array = new Array();
var over = {color:'#333333', textDecoration:'none'};
var out = {color:'#9D1322', textDecoration:'underline'};
$("#shoplist").children("div").each (function () {
shop_array.push($(this).attr('id'));
});
$("#pref").children("li").each (function () {
if(!$(this).attr('class')){
if(count_num != 0){
var id_str = shop_array[count_num];
$("#" + id_str).hide();
}
$(this).attr("num",count_num);
$(this).css({cursor:'pointer'});
$(this).hover(
function () {
$(this).css(over);
},
function () {
$(this).css(out);
});
$(this).click(function(){
var id_num = $(this).attr("num");
var after_str = shop_array[id_num];
var before_str = shop_array[before_num];
if(before_num != id_num){
$("#" + after_str).show();
$("#" + before_str).hide();
before_num = id_num;
}
});
count_num ++;
}
});
});