/* <![CDATA[ */
$(function() {
	$("#listjob .jobs_by").hover(function() {
		$(this).children(".jobs_by_list").show();											  
	}, function() {
		$(this).children(".jobs_by_list").hide();											  
	});
	$("#srb table.content tr").mouseover(function() {
		if(!$(this).is(":last-child")) {
			$(this).addClass('over');
			$(this).children("td").addClass('over');
			$(this).children("td").children("a").addClass('over');
		}
	});
	$("#srb table.content tr").mouseout(function() {
		if(!$(this).is(":last-child")) {
			$(this).children("td").children("a").removeClass('over');
			$(this).children("td").removeClass('over');
			$(this).removeClass('over');
		}
	});
	
});
/* ]]> */

