jQuery.fn.startNewsHandler = function(className) {

	$(className).live('mouseover', function(){
		$(this).addClass("pressroomOverviewHover");
	});

	$(className).live('mouseout', function(){
		$(this).removeClass("pressroomOverviewHover");
	});

	$(className).live("click",function() {
		var id = this.id.split("_");
		$("#editDeleteNews").addClass("ui-state-disabled");
		$("#editAddNews").removeClass("ui-state-disabled")
		$("#mainContentBox").load("index.php",{command : id[3], newsId : id[2], pageId : id[1]});
	});
}

