$(document).ready(function(){
$('#whisky02').hide();
$('#whisky03').hide();
$('#whisky04').hide();
$('#brandy02').hide();
$('#brandy03').hide();
$('#brandy04').hide();
$('#liqueur02').hide();
$('#liqueur03').hide();
$('#liqueur04').hide();
$('#sprits02').hide();
$('#sprits03').hide();
$('#sprits04').hide();
$('#others02').hide();
$('#others03').hide();
$('#others04').hide();

});


/* whisky */

function cateWhisky01(){
$("#whisky01").show();
$('#whisky02').hide();
$('#whisky03').hide();
$('#whisky04').hide();
}
function cateWhisky02(){
$("#whisky01").hide();
$('#whisky02').show();
$('#whisky03').hide();
$('#whisky04').hide();
}
function cateWhisky03(){
$("#whisky01").hide();
$('#whisky02').hide();
$('#whisky03').show();
$('#whisky04').hide();
}
function cateWhisky04(){
$("#whisky01").hide();
$('#whisky02').hide();
$('#whisky03').hide();
$('#whisky04').show();
}

/* brandy */
function cateBrandy01(){
$("#brandy01").show();
$('#brandy02').hide();
$('#brandy03').hide();
$('#brandy04').hide();
}
function cateBrandy02(){
$("#brandy01").hide();
$('#brandy02').show();
$('#brandy03').hide();
$('#brandy04').hide();
}
function cateBrandy03(){
$("#brandy01").hide();
$('#brandy02').hide();
$('#brandy03').show();
$('#brandy04').hide();
}
function cateBrandy04(){
$("#brandy01").hide();
$('#brandy02').hide();
$('#brandy03').hide();
$('#brandy04').show();
}

/* liqueur */
function cateLiqueur01(){
$("#liqueur01").show();
$('#liqueur02').hide();
$('#liqueur03').hide();
$('#liqueur04').hide();
}
function cateLiqueur02(){
$("#liqueur01").hide();
$('#liqueur02').show();
$('#liqueur03').hide();
$('#liqueur04').hide();
}
function cateLiqueur03(){
$("#liqueur01").hide();
$('#liqueur02').hide();
$('#liqueur03').show();
$('#liqueur04').hide();
}
function cateLiqueur04(){
$("#liqueur01").hide();
$('#liqueur02').hide();
$('#liqueur03').hide();
$('#liqueur04').show();
}


/* sprits */
function cateSprits01(){
$("#sprits01").show();
$('#sprits02').hide();
$('#sprits03').hide();
$('#sprits04').hide();
}
function cateSprits02(){
$("#sprits01").hide();
$('#sprits02').show();
$('#sprits03').hide();
$('#sprits04').hide();
}
function cateSprits03(){
$("#sprits01").hide();
$('#sprits02').hide();
$('#sprits03').show();
$('#sprits04').hide();
}
function cateSprits04(){
$("#sprits01").hide();
$('#sprits02').hide();
$('#sprits03').hide();
$('#sprits04').show();
}

/* others */
function cateOthers01(){
$("#others01").show();
$('#others02').hide();
$('#others03').hide();
$('#others04').hide();
}
function cateOthers02(){
$("#others01").hide();
$('#others02').show();
$('#others03').hide();
$('#others04').hide();
}
function cateOthers03(){
$("#others01").hide();
$('#others02').hide();
$('#others03').show();
$('#others04').hide();
}
function cateOthers04(){
$("#others01").hide();
$('#others02').hide();
$('#others03').hide();
$('#others04').show();
}



/* リンク */
directUrl= jumpUrl + ".html";
//飛び先のURLのパス

function jumpUrl(id){
location.href=directUrl+id;
}

