function logout(){
	location.href='/_process/logout.php';
}

function callLocation(){
	if(Modernizr.geolocation){
		navigator.geolocation.getCurrentPosition(function (position) {
			startpunkt = new google.maps.LatLng(parseFloat(position.coords.latitude),parseFloat(position.coords.longitude));
			startzoom = 13;
			map.setCenter(startpunkt);
			map.setZoom(startzoom);
		});
	}
}

function initializeDialogs(){
	$("#dialog").dialog({
		title:'',
		autoOpen:false,
		modal:true,
		width:260,
		height:260,
		resizable:true
	});
}

function initializeDatepicker(){
	$.datepicker.setDefaults({
		dateFormat:'dd.mm.yy',
		dayNames:['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
		dayNamesMin:['So','Mo','Di','Mi','Do','Fr','Sa'],
		firstDay:1,
		monthNames:['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
		monthNamesShort:['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez']
	});
	$(".datepicker").datepicker();
}

$(document).ready(function(){
	if (Modernizr.mq('(min-width: 0px)')) {
	} else {
		Modernizr.load('css/ipad.css');
		Modernizr.load('css/desktop.css');
	}
	$("table.liste tbody tr:nth-child(even)").addClass("even");
	$("table.liste tbody tr:nth-child(odd)").addClass("odd");
	$("table.liste tr:nth-child(even)").addClass("even");
	$("table.liste tr:nth-child(odd)").addClass("odd");
});
