
$(document).ready(function() {
    showTab('detail');
});

function showTab(id) {
    if (id == 'interview') {
        $("#tab_detail").hide();
        $("#tab_interview").show();
        $("#detail_tab").html('<img src="../images/dt_tab01_ff.png" alt="求人情報" width="158" height="26" />');
        $("#interview_tab").html('<img src="../images/dt_tab02_n02.png" alt="企業レポート" width="158" height="26" border="0" />');
        $("#tab_underline").html('<img src="../images/dt_bgtint.png" alt="" width="800" height="18" />');
    } else {
        $("#tab_detail").show();
        $("#tab_interview").hide();
        $("#detail_tab").html('<img src="../images/dt_tab01_n.png" alt="求人情報" width="158" height="26" />');
        $("#interview_tab").html('<img src="../images/dt_tab02_ff02.png" alt="企業レポート" width="158" height="26" border="0" />');
        $("#tab_underline").html('<img src="../images/dt_bgt.png" alt="" width="800" height="18" />');
    }
}


$(function(){
	$(".linkn01 a").click(function(){
		$($.browser.safari ? 'body' : 'html').animate({scrollTop: $("#no01").offset().top}, 600, "swing"); 
		$('body').animate({scrollTop: $("#no01").offset().top}, 600, "swing");
        return false;
	})
	$(".linkn02 a").click(function(){
		$($.browser.safari ? 'body' : 'html').animate({scrollTop: $("#no02").offset().top}, 600, "swing"); 
		$('body').animate({scrollTop: $("#no02").offset().top}, 600, "swing");
        return false;
	})
});