/* 要素の並べ替え */
function adjustStyle(width) {
    width = parseInt(width);
    if (width < 767) {
        $('#sec01').after($('#sec02'),$('#sec03'),$('#sec04'),$('#sec05'),$('#sec06'),$('#sec07'),$('#sec08'),$('#Recommend'),$('#sec09'));
        $('#footerSec02').after($('#btmUtilityLink'));
    } else {
		$('#sec01').appendTo('#contLeft');
		$('#sec01').after($('#sec05'),$('#sec06'),$('#sec08'));
		$('#sec02').appendTo('#contRight');
		$('#sec02').after($('#sec03'),$('#sec04'),$('#sec07'),$('#sec09'));
		$('#pageLink').before($('#btmUtilityLink'));
		$('#Company').after($('#Recommend'));
    }
}
$(function() {
    adjustStyle($(this).width());
    $(window).resize(function() {
        adjustStyle($(this).width());
    });
});


//スムーズスクロール
$(function(){
   $('a[href^=#]').click(function() {
      var speed = 500;
      var href= $(this).attr("href");
      var target = $(href == "#" || href == "" ? 'html' : href);
      var position = target.offset().top;
      $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
      return false;
   });
});


//別ウィンドウ処理
$(function(){
	$('a[href^="http"]').not('[href*="www.e-agency.co.jp"]').click(function(){
	window.open(this.href, '');
	return false;});
});

//リンク設定
$(function(){
     $("#contents section li").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
});

//スライダー設定
function adjustStyle2(width) {
$(function() {
	$("#foo2").carouFredSel({
		scroll	: 1000,
		circular: false,
		infinite: false,
		auto	: false,
		prev 	: {	
			button	: "#prev",
			key		: "left"
		},
		next 	: { 
			button	: "#next",
			key		: "right"
		},
		pagination: "#pag"
	});
});
}
$(function() {
    adjustStyle2($(this).width());
    $(window).resize(function() {
        adjustStyle2($(this).width());
    });
});

