/*//////////////////// piichi core.js [100519] */

$(document).ready(function() {

	// for scrollbar [100518]
    var user_agent = navigator.userAgent;
	if(user_agent.search(/iPhone/) == -1 && user_agent.search(/iPad/) == -1) {
		$('#pane1').jScrollPane({scrollbarWidth:2})
	}

    /**/
	/*if($.browser.mobile){
		iaMobileNavInit();
	}
    */
    
	if($.browser.msie){
		$('.lu:first-child').addClass('first-child')
	}
    
    /*	
	// for coda-slider
    $('#coda-slider-1').codaSlider(
        {
        dynamicArrows: false,
        dynamicTabs: false,
		//crossLinking: false,
        }
    );*/
	
	
	/*
    // for fanxy_box
	$("a[href$=.jpg]").fancybox({
		"transitionIn"	: "elastic",
		"transitionOut"	: "elastic",
		"titlePosition"  : "inside"
	});	*/ 
	 
	//jQuery.noConflict();


})




/*//////////////////// piichi core.js [090611] 

$(document).ready(function() {
  function filterPath(string) {
  return string
    .replace(/^\//,'')
    .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
    .replace(/\/$/,'');
  }
  var locationPath = filterPath(location.pathname);
  $('a[href*=#]').each(function() {
   var thisPath = filterPath(this.pathname) || locationPath;
    if (  locationPath == thisPath
    && (location.hostname == this.hostname || !this.hostname)
    && this.hash.replace(/#/,'') ) {
      var $target = $(this.hash), target = this.hash;
      if (target) {
        var targetOffset = $target.offset().top;
        $(this).click(function(event) {*/
			/*var hashTracker = this.hash.substr(0); 
			pageTracker._trackPageview(document.location.pathname + hashTracker+"/"); 
		  event.preventDefault();
          $('html, body').animate({scrollTop: targetOffset}, 400, function() {
            location.hash = target;
          });
        });
      }
    }
  });

  
  $('a[@href^="http://"].blank').click(function(){
	window.open(this.href,'_blank'); return false; 
  }); 

});*/

/*//////////////////// popUp 

function openLinkPopup(wUrl,wWidth,wHeight){
	var wObj;
	var winName = Math.round(Math.random()*1000);
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption =
	"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="
	+ wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth /
	2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	wObj = window.open(wUrl,winName,wOption);
	wObj.focus();
}*/

/*//////////////////// mailTo */

function getMailto(user,domain,subject, message){
	locationstring = "mailto:" + user + "@" + domain + "?subject=" + subject +  "&body=" + message;
	window.location = locationstring;
}
