﻿﻿jQuery.fn.extend({
  scrollTo : function(speed, easing) {
    if(!$(this)[0].hash || $(this)[0].hash == "#") {
      return false;
    }
    return this.each(function() {
      var targetOffset = $($(this)[0].hash).offset().top;
      $('html,body').animate({scrollTop: targetOffset}, speed, easing);
    });
  }
});

$(document).ready(function(){
	$('a.gotop[href*=#]').click(function() {
		$(this).scrollTo(300);
		return false;
	});
});
$(document).ready(function(){
	$('.shoptofukidashi').qtip({
		content:$('.shopfukidashi'),
		style:{
			background:'#ffffff',
			tip:'topMiddle',
			color:'#000000',
			border:{width:0,radius:1,color:'#eeeeee'},
			width:{max:300}
		},
		position:{
			corner:{target:"bottomMiddle",tooltip:"topMiddle"}
		},
		hide:{fixed:true,delay:500}
	});
});