//$(function(){ // wait for document to load 
//
//$('rating-box').each(
//		function (i){
//			$('input.star',this).rating('select',$(this).attr('value'));
//		}
//);	
//console.log("Tracing ...");
//});

function showStars(){
	console.log("showStars was called");
}

function cotv_login(user,password){
	$.post("./session/login.php",{user:user,password:password},function(xml){
		console.log("login erfolgreich");
		console.log(xml);
		//window.location.reload();
		
	});
	console.log('LOGIN WAS CALLED');
}

function cotv_logout(){
	$.get("./session/logout.php",function(xml){
		//console.log("logged out");
		window.location.reload();
	});
}
