﻿
///
//ピックアップ注目求人
//
function getnewmo_osusume(){
$.each(newmo_osusume, function(i){
document.write('<li><h3>' + this.category + '</h3>');
document.write('<div class="pickup_text_box"><div class="pickup_text"><h4 class="ttl_center"><a href="' + this.link + '">' + this.name +'</a></h4>');
document.write('<p>' + this.outline + '</p></div>');
document.write('<a href="' + this.link + '"><img src="' + this.image + '" alt="' + this.name + '" width="63" height="63" /></a></div>');
document.write('</li>');
	});
}


///
//新着求人特集
//
function getnewmo_newly(){
$.each(newmo_newly, function(i){
document.write('<li><a href="' + this.link + '"><img src="' + this.image + '" alt="' + this.name + '" width="190" height="86" /></a></br>');
document.write('<a href="' + this.link + '">' + this.name +'</a><br />' + this.outline + '</li>');
	});
}


///
//インタビューバックナンバー
//
function getnewmo_intback(){
$.each(newmo_intback, function(i){
document.write('<li><a href="' + this.link + '"><img src="' + this.image + '" alt="' + this.name + '" width="190" height="60" /></a></li>');
	});
}


///
//求人特集バックナンバー
//
function getnewmo_workback(){
$.each(newmo_workback, function(i){
document.write('<li><a href="' + this.link + '"><img src="' + this.image + '" alt="' + this.name + '" width="190" height="60" /></a></li>');
	});
}