/*Corners*/
    $(function(){
	$('#gamma').corner("10px br");
	$('.registMailMag').corner("10px");
	$('.chargeProfileIn').corner("dog tr");
	$('.blogTopics').corner("5px bottom");
    });	
	
/*mail form
 function ShowFormGuide(obj,GuideSentence) {
      // 入力案内を表示
      if( obj.value == '' ) {
         obj.value = GuideSentence;
         obj.style.color = '#808080';
      }
   }
   function HideFormGuide(obj,GuideSentence) {
      // 入力案内を消す
      if( obj.value == GuideSentence ) {
         obj.value='';
         obj.style.color = '#000000';
      }
   }*/
   /*Zoom Scroll*/
	$(function(){
$("a[href*='#']").slideScroll();
});
	
// 一定期間New/Upマークを表示
function newUp(y, m, d, c) {
  delDay = 5; // 何日後に削除
  oldDay = new Date(y + "/" + m + "/" +d);
  newDay = new Date();
  d =(newDay - oldDay) / (1000 * 24 * 3600);
  if(d <= delDay) {
    // Newマーク
    if(c == "new") document.write("<span class='newMark'>NEW!</span>");
  }
}

/*フェード*/

//$(document).ready(
// function(){$("a img").hover(function(){$(this).fadeTo("fast", 0.6);}
//,function(){$(this).fadeTo("fast", 1.0);}
//);});
//


$( function(){
    // default settings
    $.Tooltip.defaults = $.extend( $.Tooltip.defaults, {
        delay      : 1,
        showURL    : false,
        showBody   : " - ",
        // left       : -100,
        track      : true
    });

    // initialize
    $( 'li a' ).Tooltip();

    // with different css
    $( 'img' ).Tooltip({
        extraClass: 'tip2'
    });
});
