var jQueryPath = 'manzoo/system/js/jquery/';

$(document).ready(function() {
	$('.lightbox a').lightBox();
});

function msg(obj){
	var text = '';
	if(typeof obj == 'object'){
		text = objectToString(obj);
	}else if(typeof obj == 'string'){
		text = obj;
	}
	alert(text);
}

function objectToString(obj){
	var text = '';
	if(typeof obj == 'object'){
		for(key in obj) {
			text += [key]+":"+obj[key]+"\n\n";
		}
	}
	return text;
}
