//var currentojb = 'textHldrPastoe';
var speed = 250;
function toggleOjb(objPath, currentojb, ojbToShow) {
	if(ojbToShow != currentojb) {
		//$('#contentPastoeHldr span').slideUp(speed, function() {
		$(objPath).hide("slide", { direction: "left" }, speed, function() {
			setTimeout(function () {
				$('#'+ojbToShow).addClass('show');
				$('#'+ojbToShow).show("slide", { direction: "right" }, speed);
			},speed);
			currentojb = ojbToShow;
		});
	}
} 
