var mainVacancyListRollover = null;

// Создаем объект
mainVacancyListRollover = new jQuery.fn.imageRollover();
//mainVacancyListRollover.selectedElements = $("#vacancyList TD.left A.top, #vacancyList TD.right A.top");
mainVacancyListRollover.selectedElements = $("#vacancyList .top");
mainVacancyListRollover.useBackgroundImage = true;
mainVacancyListRollover.useEffectForClick = false;
mainVacancyListRollover.originalImageSuffix = "";
mainVacancyListRollover.selectedImageSuffix = "";
mainVacancyListRollover.hoveredImageSuffix = "_hover";
mainVacancyListRollover.clickedImageSuffix = "";
mainVacancyListRollover.getRolloverElement = 
function(targetElement)
{
	return $(targetElement);
};
mainVacancyListRollover.init();

// Уничтожаем объект
$(window).unload(
	function()
	{
		mainVacancyListRollover = null;
	}
);