//List Enhancement function
//The only purpose of this script is to enable the
//ListEMP plugin on elements of the css class that is passed
//as the only parameter of this function.
//
//Dependencies:
//JQuery (min version: 1.5.2)
//ListEMP 1.0.0

//Enhance Lists
function EnhanceLists(className){
				 jQuery("."+className).enhance();
}

