/**
 * @author Markus Hanses
 */
function formatTime2Hour(aTime) 
{
	var hour = aTime.toString().substr(0,2);
	return parseInt(hour);
}