$(document).ready(function (){
	
	$(".transparent a").mouseover(function(){ 
		$(this).stop().fadeTo(800,0.5,'easeOutExpo');
	});
	$(".transparent a").mouseout(function(){
		$(this).stop().fadeTo(1000,1,'easeOutExpo');
	});
	
	
});


//アンカースクロール
$(function(){
   $('a[href^=#]').click(function() {
      var speed = 1000;
      var href= $(this).attr("href");
      var target = $(href == "#" || href == "" ? 'html' : href);
      var position = target.offset().top;
      $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'easeOutExpo');
      return false;
   });
});

//colorbox設定
$(function() {	
	$(".popup_frame").colorbox({
		opacity:0.5,
		speed:1000,
		transition:"fade",
		overlayClose:false,
		width:800,
		height:"95%",
		iframe:true
	});
		
	$("a[rel='popup']").colorbox({
		transition:"fade",
		opacity:0.5
		
	});

	
});







