var deskjobs = [{"company":"SE-DD Soft Solutions","title":"Animatie 3d","location":"Bucharest","link":"http:\/\/www.deskjobs.ro\/job\/27\/animatie-3d-se-dd-soft-solutions-bucuresti"},{"company":"Intelligent hr Investment","title":"programator php","location":"Bucharest","link":"http:\/\/www.deskjobs.ro\/job\/25\/programator-php-intelligent-hr-investment-bucuresti"}];

function showDeskJobs(html_container, css_class)
{
	var html = "<ul class=\"" + css_class + "\">";
	if(deskjobs.length>0)
	{
		for (i = 0; i < deskjobs.length; i++)
		{
			//html += "<li><a target=\"_blank\" href=\"" + deskjobs[i].link +"\">" + deskjobs[i].company + " > " + deskjobs[i].title + "</a></li>";
			html += "<li><a target=\"_blank\" href=\"" + deskjobs[i].link +"\">" + deskjobs[i].title + " (" + deskjobs[i].location + ")" + "</a></li>";
		}
	}
	else
	{
		html += "<li>no jobs yet</li>";
	}
	html += "</ul>";
	
	if (document.getElementById(html_container))
	{
		document.getElementById(html_container).innerHTML = html;	
	}
	else
	{
		document.write("<div id=\"" + html_container + "\">" + html + "</div>");
	}
}