function menu_int(i){
	$("#menu_"+i).slideToggle("slow");
}

function load_from(hodnota){
	$("#mad_submit").attr("href","javascript:void(0);");
	$("#mad_submit").fadeOut("slow");
	if(hodnota!=""){
		$("#mad_to").fadeOut("slow");
		$("#mad_from").fadeIn("slow");
		$("#mad_from").html("<option value=\"\">Odkiaľ &gt;&gt;</option>");
		$("#mad_to").html("<option value=\"\">Kam &gt;&gt;</option>");
		$.get("/forms/mad.php", { mad: hodnota }, function(data){
			$("#mad_from").append(data);
			$("#mad_to").append(data);
		});
	}else{
		$("#mad_from").html("");
		$("#mad_to").fadeOut("slow");
		$("#mad_to").html("");
		$("#mad_from").fadeOut("slow");
	}
}
function load_to(hodnota){
	$("#mad_submit").attr("href","javascript:void(0);");
	if(hodnota!=""){
		$("#mad_to").fadeIn("slow");
	}else{
		$("#mad_submit").fadeOut("slow");
		$("#mad_to").fadeOut("slow");
	}
}
function load_submit(hodnota){
	$("#mad_submit").attr("href","javascript:void(0);");
	if(hodnota!=""){
		$("#mad_submit").css("display","block");
		$("#mad_submit").fadeIn("slow");
	}else{
		$("#mad_submit").fadeOut("slow");
	}
}
function make_link(){
	var currentTime = new Date();
	var cp_link = "http://cp.atlas.sk/"+$("#mad option:selected").val()+"/spojenie/?f="+$("#mad_from option:selected").text()+"&t="+$("#mad_to option:selected").text()+"&date="+currentTime.getDate()+"."+(currentTime.getMonth()+1)+"."+currentTime.getFullYear()+"&time="+currentTime.getHours()+":"+currentTime.getMinutes()+"&submit=True";
	$("#mad_submit").attr("href",cp_link);
	return true;
}
