function showInfo(div_id,thisobj,popup,modal) {
	$('#'+div_id).modal();	
	return false;	
}
function hideInfo() {
	$.modal.close();
	return false;
}
function show(div_id) {
	$('#'+div_id).show();
}
function hide(div_id) {
	$('#'+div_id).hide();
}

jQuery.fn.delay = function(time,func){
	this.each(function(){
		setTimeout(func,time);
	});
	return this;
};
