/**
 * @author mfritscher
 */
// make jquery compatible to app.js and prototype
function $(id)
{
	if ( typeof id == 'Object' ) return id;
	ele = document.getElementById(id);
	if ( null == ele ) return jQuery(id);
	return ele;
}


