var jobs = [{"id":"128","type_id":"1","category_id":"9","category_name":"Specialists","company":"Mherzy","url":"http:\/\/www.wardhowell.com.ph","title":"Application Support Analyst","url_title":"application-support-analyst-at-mherzy","location":"Makati City","description":".At least 5 years of recent experience supporting corporate applications, ideally in a global financial company\r\nexposure to one or more of the following: \r\n. application support duties in a financial institution environment\r\n. security administration experience with a platform such as Active Directory, Sybase ASE (or MS SQL\/Oracle), Sun Directory, NIS or RACF Mainframe\r\n. a request workflow management tool such as NewScale's RequestCenter\r\n. an incident and request management tool such as BMC's Remedy\r\n. a process workflow tool such as BMC's RunBook or Atrium Orchestrator\r\n. an identity management tool such as BMC's Control SA\r\n. an authentication service such as Secure Computing's Safeword\r\n. alert management tool like BMC Event Manager and Alarmpoint","created_on":"04-07-2010","closed_on":"2010-08-03 03:59:21","apply":"","city_id":"1","mysql_date":"2010-07-04 03:59:21","location_outside_ro":"","is_active":"1","days_old":"27","is_spotlight":null},{"id":"126","type_id":"1","category_id":"1","category_name":"Programmers","company":"Mherzy","url":"http:\/\/www.wardhowell.com.ph","title":"Security Consultant","url_title":"security-consultant-at-mherzy","location":"Makati City","description":"( to be based in Singapore)\r\n\r\n. With background in participation in implementation and delivery of Identity Management solutions (Using SUN \/ Oracle IDM):\r\n\r\n . Configure, Customize (including workflow customization), set-up, and deploy IDM Suite.\r\n . Participation in project activities including requirements, design,testing, documentation, etc.\r\n\r\n. Degree in computer related discipline, with 2-4 years relevant working experience.\r\n. At least 2 years' experience in Security Solution \/ Implementation experience (Handle security function as part of development projects)\r\n. Experience in Software development such as Java, C,.Net and familiarity with development tools and software integration and scripting experience.\r\n. Familiarity with Identity Management solutions\r\n. Experience with Application \/ Data Security solutions is preferred.\r\n. CISSP & CISA certifications is advantageous\r\n","created_on":"04-07-2010","closed_on":"2010-08-03 03:56:10","apply":"","city_id":"1","mysql_date":"2010-07-04 03:56:10","location_outside_ro":"","is_active":"1","days_old":"27","is_spotlight":null}];
		function showJobs(html_container, css_class)
		{
			var html = "<ul class=\"" + css_class + "\">";
			for (j = 0; j < jobs.length; j++)
			{
				//html += "<li><a target=\"_blank\" href=\"http://www.itjobsearch.ph/job/" + jobs[j].id + "/" + jobs[j].url_title + "//\">" + jobs[j].title + " la " + jobs[j].company + "</a></li>";
				html += "<li><a target=\"_blank\" href=\"http://www.itjobsearch.ph/job/" + jobs[j].id + "/" + jobs[j].url_title + "//\">" + jobs[j].title + " (" + jobs[j].location + ")</a></li>";
			}
			html += "</ul>";
			
			if (document.getElementById(html_container))
			{
				document.getElementById(html_container).innerHTML = html;	
			}
			else
			{
				document.write("<div id=\"" + html_container + "\">" + html + "</div>");
			}
		}