$(document).ready(function () {

$('.targets a').bigTarget({
hoverClass: 'hovers', // CSS class applied to the click zone onHover
clickZone : 'div:eq(0)' // jQuery parent selector
});

$('.bloc_wr').corner('round 6px');
$('#area_detail .bloc_buy').corner('round 6px');

$(".jquery_tabs").accessibleTabs({
wrapperClass: 'content',
currentClass: 'current',
tabhead: 'h5',
tabbody: '.tabbody',
fx:'fadeIn',// can be 'fadeIn', 'slideDown', 'show'
fxspeed: 'normal',
// speed (String|Number): 'slow', 'normal', or 'fast') or the number of
// milliseconds to run the animation
currentInfoText: '',
// text to indicate for screenreaders which tab is the current one
currentInfoPosition: 'prepend',
// Definition where to insert the Info Text.
// Can be either 'prepend' or 'append'
currentInfoClass: 'current-info'
});

$(function(){
$('.searchs input[value=""]').val("商品を検索する").css("color","#bbb");
$('.searchs input').focus(function(){
$(this).css("background-color" , "#fff");
if(this.value == "商品を検索する"){
$(this).val("").css("color","#000");
}
});
});

$('#footer li:first-child').addClass('alt');

//targetblank for xhtml valid
$('.url').click(function(){
window.open(this.href,'_blank');
return false;
});

$('a[href*=#pagetop]').click(function () {
$(this).blur();
$('html,body').animate({ scrollTop: 0 }, 300);
return false;
});

});


