first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
44
rus/admin/_V4/_lib/jquery.treeview/demo/async.html
Normal file
44
rus/admin/_V4/_lib/jquery.treeview/demo/async.html
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
|
||||
<title>jQuery async treeview</title>
|
||||
|
||||
<link rel="stylesheet" href="../jquery.treeview.css" />
|
||||
<link rel="stylesheet" href="../../../../jquery.treeview/red-treeview.css" />
|
||||
<link rel="stylesheet" href="screen.css" />
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
|
||||
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.async.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#black").treeview({
|
||||
url: "source.php"
|
||||
})
|
||||
});
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
||||
<div id="main">
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo">Main Demo</a></li>
|
||||
<li><a href="source.phps">Server component used</a></li>
|
||||
</ul>
|
||||
|
||||
<h4>Lazy-loading tree</h4>
|
||||
|
||||
<ul id="black">
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</body></html>
|
||||
BIN
rus/admin/_V4/_lib/jquery.treeview/demo/bg.gif
Normal file
BIN
rus/admin/_V4/_lib/jquery.treeview/demo/bg.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
35
rus/admin/_V4/_lib/jquery.treeview/demo/demo.js
Normal file
35
rus/admin/_V4/_lib/jquery.treeview/demo/demo.js
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
$(document).ready(function(){
|
||||
|
||||
// first example
|
||||
$("#navigation").treeview({
|
||||
collapsed: true,
|
||||
unique: true,
|
||||
persist: "location"
|
||||
});
|
||||
|
||||
|
||||
// second example
|
||||
$("#browser").treeview({
|
||||
animated:"normal",
|
||||
persist: "cookie"
|
||||
});
|
||||
|
||||
$("#samplebutton").click(function(){
|
||||
var branches = $("<li><span class='folder'>New Sublist</span><ul>" +
|
||||
"<li><span class='file'>Item1</span></li>" +
|
||||
"<li><span class='file'>Item2</span></li></ul></li>").appendTo("#browser");
|
||||
$("#browser").treeview({
|
||||
add: branches
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// third example
|
||||
$("#red").treeview({
|
||||
animated: "fast",
|
||||
collapsed: true,
|
||||
control: "#treecontrol"
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
56
rus/admin/_V4/_lib/jquery.treeview/demo/images.html
Normal file
56
rus/admin/_V4/_lib/jquery.treeview/demo/images.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
|
||||
<title>jQuery treeView</title>
|
||||
|
||||
<link rel="stylesheet" href="../jquery.treeview.css" />
|
||||
<link rel="stylesheet" href="../../../../jquery.treeview/red-treeview.css" />
|
||||
<link rel="stylesheet" href="screen.css" />
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
|
||||
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$("#browser").treeview();
|
||||
});
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
||||
<div id="main">
|
||||
|
||||
<h4>Sample 1 - default</h4>
|
||||
<ul id="browser" class="filetree">
|
||||
<li><img src="../images/folder.gif" /> 123</span>
|
||||
<ul>
|
||||
<li>blabla <img src="../images/file.gif" /></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="../images/folder.gif" />
|
||||
<ul>
|
||||
<li><img src="../images/folder.gif" />
|
||||
<ul id="folder21">
|
||||
<li><img src="../images/file.gif" /> more text</li>
|
||||
<li>and here, too<img src="../images/file.gif" /></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="../images/file.gif" /></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="closed">this is closed! <img src="../images/folder.gif" />
|
||||
<ul>
|
||||
<li><img src="../images/file.gif" /></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="../images/file.gif" /></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</body></html>
|
||||
307
rus/admin/_V4/_lib/jquery.treeview/demo/index.html
Normal file
307
rus/admin/_V4/_lib/jquery.treeview/demo/index.html
Normal file
|
|
@ -0,0 +1,307 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
|
||||
<title>jQuery treeView</title>
|
||||
|
||||
<link rel="stylesheet" href="../jquery.treeview.css" />
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
|
||||
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript" src="demo.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin 1.4</a> Demo</h2>
|
||||
|
||||
<h4>Note (Sept 19th, 08): <a href="http://www.dynamicdrive.com/dynamicindex1/treeview">Dynamic Drive specific version</a> of original main demo page.</h4>
|
||||
|
||||
|
||||
|
||||
<h3>Demo #1:</h3>
|
||||
|
||||
<ul id="navigation">
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.0</a>
|
||||
<ul>
|
||||
<li><a href="index.html">Item 1.0.0</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.1</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.0</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.0.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.0.1</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.0.2</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.1</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.1.0</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.2</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.2.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.2.1</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 1.2.2.2</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2</a>
|
||||
<ul>
|
||||
<li><span>Item 2.0</span>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.0.0</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.0.0.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.0.0.1</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.0</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.0.0</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.1</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.1.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.1.1</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.1.2</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.2</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.2.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.2.1</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 2.1.2.2</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3</a>
|
||||
<ul>
|
||||
<li class="open"><a href="http://www.dynamicdrive.com">Item 3.0</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.1</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.1.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.1.1</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.2</a>
|
||||
<ul>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.2.0</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.2.1</a></li>
|
||||
<li><a href="http://www.dynamicdrive.com">Item 3.0.2.2</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<p><b>Notes:</b></p>
|
||||
<ul>
|
||||
<li>All nodes collapsed explicitly by default, though overwritten by
|
||||
persistence feature below.</li>
|
||||
<li>Only one node allowed open at any time.</li>
|
||||
<li>Animation disabled..</li>
|
||||
<li>"<code>Location</code>" persistence enabled, causing the branch
|
||||
with an "<code>href</code>" value matching that of the current page
|
||||
(<code>location.href</code>) to be expanded by default. In the demo
|
||||
above, that is "<b>Item 1.0.0</b>".</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<hr />
|
||||
|
||||
<h3>Demo #2:</h3>
|
||||
|
||||
<p><a href="#" id="samplebutton" onClick="return false">Click here</a> to add a New Folder node to the end of the existing tree</p>
|
||||
|
||||
<ul id="browser" class="filetree">
|
||||
<li><span class="folder">Folder 1</span>
|
||||
<ul>
|
||||
<li><span class="file">Item 1.1</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span class="folder">Folder 2</span>
|
||||
<ul>
|
||||
<li><span class="folder">Subfolder 2.1</span>
|
||||
<ul id="folder21">
|
||||
<li><span class="file">File 2.1.1</span></li>
|
||||
<li><span class="file">File 2.1.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span class="file">File 2.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="closed"><span class="folder">Folder 3 (closed at start)</span>
|
||||
<ul>
|
||||
<li><span class="file">File 3.1</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span class="file">File 4</span></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<p><b>Notes:</b></p>
|
||||
<ul>
|
||||
<li>No Nodes collapsed explicitly. "<b>Folder 3</b>" is manually
|
||||
closed then by giving its <code>LI</code> element a "<code>closed</code>"
|
||||
CSS class.</li>
|
||||
<li>Animation enabled, speed is "<code>normal</code>".</li>
|
||||
<li>"<code>Cookie</code>" persistence enabled, causing the current
|
||||
tree state to be persisted.</li>
|
||||
<li>Dynamically adding a sub tree to the existing tree demonsrated.</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<hr />
|
||||
|
||||
|
||||
<h3>Demo #3:</h3>
|
||||
|
||||
<div id="treecontrol">
|
||||
<a title="Collapse the entire tree below" href="#"> Collapse All</a> |
|
||||
<a title="Expand the entire tree below" href="#"> Expand All</a> |
|
||||
<a title="Toggle the tree below, opening closed branches, closing open branches" href="#">Toggle All</a>
|
||||
</div>
|
||||
|
||||
<ul id="red" class="treeview-red">
|
||||
<li><span>Item 1</span>
|
||||
<ul>
|
||||
<li><span>Item 1.0</span>
|
||||
<ul>
|
||||
<li><span>Item 1.0.0</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 1.1</span></li>
|
||||
<li><span>Item 1.2</span>
|
||||
<ul>
|
||||
<li><span>Item 1.2.0</span>
|
||||
<ul>
|
||||
<li><span>Item 1.2.0.0</span></li>
|
||||
<li><span>Item 1.2.0.1</span></li>
|
||||
<li><span>Item 1.2.0.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 1.2.1</span>
|
||||
<ul>
|
||||
<li><span>Item 1.2.1.0</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 1.2.2</span>
|
||||
<ul>
|
||||
<li><span>Item 1.2.2.0</span></li>
|
||||
<li><span>Item 1.2.2.1</span></li>
|
||||
<li><span>Item 1.2.2.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 2</span>
|
||||
<ul>
|
||||
<li><span>Item 2.0</span>
|
||||
<ul>
|
||||
<li><span>Item 2.0.0</span>
|
||||
<ul>
|
||||
<li><span>Item 2.0.0.0</span></li>
|
||||
<li><span>Item 2.0.0.1</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 2.1</span>
|
||||
<ul>
|
||||
<li><span>Item 2.1.0</span>
|
||||
<ul>
|
||||
<li><span>Item 2.1.0.0</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 2.1.1</span>
|
||||
<ul>
|
||||
<li><span>Item 2.1.1.0</span></li>
|
||||
<li><span>Item 2.1.1.1</span></li>
|
||||
<li><span>Item 2.1.1.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 2.1.2</span>
|
||||
<ul>
|
||||
<li><span>Item 2.1.2.0</span></li>
|
||||
<li><span>Item 2.1.2.1</span></li>
|
||||
<li><span>Item 2.1.2.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span>Item 3</span>
|
||||
<ul>
|
||||
<li class="open"><span>Item 3.0</span>
|
||||
<ul>
|
||||
<li><span>Item 3.0.0</span></li>
|
||||
<li><span>Item 3.0.1</span>
|
||||
<ul>
|
||||
<li><span>Item 3.0.1.0</span></li>
|
||||
<li><span>Item 3.0.1.1</span></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><span>Item 3.0.2</span>
|
||||
<ul>
|
||||
<li><span>Item 3.0.2.0</span></li>
|
||||
<li><span>Item 3.0.2.1</span></li>
|
||||
<li><span>Item 3.0.2.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<p><b>Notes:</b></p>
|
||||
<ul>
|
||||
<li>All nodes collapsed explicitly by default.</li>
|
||||
<li>Animation enabled, speed is "fast".</li>
|
||||
<li>Tree state persistence off.</li>
|
||||
<li>"toggle" function defined, fired each time a folder branch is
|
||||
toggled.</li>
|
||||
</ul>
|
||||
|
||||
<hr />
|
||||
|
||||
<h3>Other demos</h3>
|
||||
<ul>
|
||||
<li><a href="large.html">Large Tree Demo</a></li>
|
||||
<li><a href="prerendered.html">Prerendered Large Tree Demo</a></li>
|
||||
<li><a href="async.html">Async Tree Demo</a></li>
|
||||
<li><a href="simple.html">Simple Tree Demo, famfamfam theme (no lines)</a></li>
|
||||
</ul>
|
||||
|
||||
</body></html>
|
||||
559
rus/admin/_V4/_lib/jquery.treeview/demo/large.html
Normal file
559
rus/admin/_V4/_lib/jquery.treeview/demo/large.html
Normal file
|
|
@ -0,0 +1,559 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<link rel="stylesheet" href="../jquery.treeview.css" />
|
||||
<link rel="stylesheet" href="../../../../jquery.treeview/red-treeview.css" />
|
||||
<link rel="stylesheet" href="screen.css" />
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
|
||||
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$("#tree").treeview({
|
||||
collapsed: true,
|
||||
animated: "medium",
|
||||
control:"#sidetreecontrol",
|
||||
persist: "location"
|
||||
});
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
||||
<div id="main"><a href="../../../../jquery.treeview/demo">Main Demo</a>
|
||||
|
||||
<div id="sidetree">
|
||||
<div class="treeheader"> </div>
|
||||
<div id="sidetreecontrol"><a href="../../../../jquery.treeview/demo/?#">Collapse All</a> | <a href="../../../../jquery.treeview/demo/?#">Expand All</a></div>
|
||||
|
||||
<ul id="tree">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm"><strong>Home</strong></a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/enewsletters/index.cfm">Airdrie eNewsletters </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Airdrie Directories</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/video/index.cfm">Airdrie Life Video</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Airdrie News</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Airdrie Quick Links</a></li>
|
||||
<li><a href="?http://weather.ibegin.com/ca/ab/airdrie/">Airdrie Weather</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/human_resources/index.cfm">Careers</a> | <a href="../../../../jquery.treeview/demo/?/contact_us/index.cfm">Contact Us</a> | <a href="../../../../jquery.treeview/demo/?/site_map/index.cfm">Site Map</a> | <a href="../../../../jquery.treeview/demo/?/links/index.cfm">Links</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/calendars/index.cfm">Community Calendar </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/conditions_of_use/index.cfm">Conditions of Use and Privacy Statement</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">I'd like to find out about... </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Opportunities</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/links/index.cfm">Resource Links</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Special Notices</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><span><strong>City Services</strong></span>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/index.cfm">Assessment</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/assessment_faqs.cfm">Assessment FAQs</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/property_assessment_notices.cfm">2007 Property Assessment Notices</a></li>
|
||||
<li><a href="?http://www.creb.com/">CREB</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/non_residential_assessment_tax_comparisons.cfm">Non-Residential Assessment / Tax Comparisons</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/how_to_file_a_complaint.cfm">How to File a Complaint</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/supplementary_assessment_tax.cfm">Supplementary Assessment and Tax</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/index.cfm">Building & Development </a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/index.cfm">Building Inspections</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/builder_forums.cfm">Builder Forums</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/contact_us.cfm">Contact Us</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/contractor_notices.cfm">Contractor Notices</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/inspector_guidelines.cfm">Inspector Guidelines</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/links.cfm">Links</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/statistics_2007.cfm">Statistics</a>
|
||||
<ul>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/statistics_2006.cfm">Statistics 2006</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/statistics_2005.cfm">Statistics 2005</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="City Infrastructure" href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/index.cfm">City Infrastructure</a>
|
||||
<ul>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/roadway_improvement.cfm">Roadway Improvement</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/traffic.cfm">Traffic</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/transportation_planning.cfm">Transportation & Infrastructure Planning</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/water_sewer_construction.cfm">Water & Sewer Construction</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Commercial/Industrial Development" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/index.cfm">Commercial / Industrial / Multi-Family Development</a>
|
||||
<ul>
|
||||
<li><a title="Call Before You Dig" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/call_before_you_dig.cfm">Call Before You Dig</a></li>
|
||||
<li><a title="New Development" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/new_development.cfm">New Development</a></li>
|
||||
<li><a title="Existing Development" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/existing_development.cfm">Existing Development</a></li>
|
||||
<li><a title="Signage" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/signage.cfm">Signage</a></li>
|
||||
<li><a title="Notice of Development" href="../../../../jquery.treeview/demo/?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development</a></li>
|
||||
<li><a title="Appeals" href="../../../../jquery.treeview/demo/?/public_meetings/appeals/index.cfm">Appeals</a></li>
|
||||
<li><a title="Customer Feedback" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/customer_feedback.cfm">Customer Feedback</a></li>
|
||||
<li><a title="Certificate of Compliance" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/certificate_of_compliance.cfm">Certificate of Compliance</a></li>
|
||||
<li><a title="Permit Applications & Forms" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/permit_applications_forms.cfm">Permit Applications & Forms</a></li>
|
||||
<li><a title="Fees" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/fees.cfm">Fees</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><!-- This links to an empty content page (25 Sept 2007) --> <a title="Residential Development" href="../../../../jquery.treeview/demo/?/building_development/residential_development/index.cfm">Residential Development</a>
|
||||
<ul>
|
||||
<li><a title="Call Before You Dig" href="../../../../jquery.treeview/demo/?/building_development/residential_construction/building_permit_requirements.cfm">Building Permit Requirements</a></li>
|
||||
<li><a title="New Development" href="../../../../jquery.treeview/demo/?/building_development/residential_construction/new_homes.cfm">New Homes</a></li>
|
||||
<li><a title="Existing Development" href="../../../../jquery.treeview/demo/?/building_development/residential_construction/basements.cfm">Basements</a></li>
|
||||
<li><a title="Signage" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/call_before_you_dig.cfm">Call Before You Dig</a></li>
|
||||
<li><a title="Decks" href="../../../../jquery.treeview/demo/?/building_development/residential_development/decks.cfm">Decks</a></li>
|
||||
<li><a title="Detached Garages or Accessory Building" href="../../../../jquery.treeview/demo/?/building_development/residential_development/detached_garages_or_accessory_building.cfm">Detached Garages or Accessory Building</a></li>
|
||||
<li><a title="Grading" href="../../../../jquery.treeview/demo/?/building_development/residential_development/grading.cfm">Grading</a></li>
|
||||
<li><a title="Fences" href="../../../../jquery.treeview/demo/?/building_development/residential_development/fences.cfm">Fences</a></li>
|
||||
<li><a title="Applications, Permits & Checklists" href="../../../../jquery.treeview/demo/?/building_development/residential_development/applications_permits_checklists.cfm">Applications, Permits & Checklists</a></li>
|
||||
<li><a title="Certificate of Compliance" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/certificate_of_compliance.cfm">Certificate of Compliance</a></li>
|
||||
<li><a title="Fees" href="../../../../jquery.treeview/demo/?/building_development/residential_development/fees.cfm">Fees</a></li>
|
||||
<li><a title="Notice of Development" href="../../../../jquery.treeview/demo/?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development</a></li>
|
||||
<li><a title="Street Addresses for New Construction" href="../../../../jquery.treeview/demo/?/gis/index.cfm">Street Addresses for New Construction</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/community_safety/index.cfm">Community Safety</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/disaster_services/index.cfm">Disaster Services</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/emergency_services/index.cfm">Emergency Services</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/municipal_enforcement/index.cfm">Municipal Enforcement</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/rcmp/index.cfm">Royal Canadian Mounted Police</a>
|
||||
<ul>
|
||||
<li><a title="Community Partnership Programs" href="../../../../jquery.treeview/demo/?/rcmp/community_partnership_programs.cfm">Community Partnership Programs</a></li>
|
||||
<li><a title="Traffic Services" href="../../../../jquery.treeview/demo/?/rcmp/traffic_services.cfm">Traffic Services</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/community_services/index.cfm">Community Services</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/directories/community_directory/index.cfm">Community Directory</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/calendars/index.cfm">Community Calendar</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/engineering/index.cfm">Engineering Services </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/finance/index.cfm">Finance</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/gis/index.cfm">Maps (GIS)</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_works/index.cfm">Public Works</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/recycling_waste/index.cfm">Recycling, Waste & Composting</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/environmental_services/index.cfm">Environmental Services </a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/social_planning/index.cfm">Social Planning</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/taxation/index.cfm">Taxation</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/transit/index.cfm">Transit</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/utilities/index.cfm">Water & Sewer (Utilities)</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><span><strong>News</strong></span>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/enewsletters/index.cfm">Airdrie eNewsletters</a>
|
||||
<ul>
|
||||
<li><a href="?http://www.industrymailout.com/Industry/View.aspx?id=50169&p=679b">Airdrie Today eNewsletter</a></li>
|
||||
<li><a href="?http://www.industrymailout.com/Industry/View.aspx?id=47265&q=0&qz=4c4af0">Airdrie @Work eNewsletter</a></li>
|
||||
<li><a href="?http://www.industrymailout.com/Industry/Archives.aspx?m=2682&qz=73249dbb">Airdrie eNewsletter Archive</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/calendars/index.cfm">Community Calendar</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/community_news/index.cfm">Community News</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/news_release/index.cfm">News Releases</a> (2007)
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/news_release/2006/index.cfm" title="2006 News Releases">2006 News Releases</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/news_release/2005/index.cfm" title="2005 News Releases">2005 News Releases</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/news_release/2004/index.cfm" title="2004 News Releases">2004 News Releases</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/photogallery/index.cfm">Photo Gallery</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_meetings/index.cfm">Public Meetings</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_meetings/appeals/index.cfm">Appeals</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_meetings/open_houses/index.cfm">Open Houses</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_meetings/public_hearings/index.cfm">Public Hearings</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/publications/index.cfm">Publications</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/publications/pdf/AirdrieLIFE_fall2006.pdf">Airdrie Life Magazine</a> (16MB, .PDF)</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/publications/pdf/report_for_2005.pdf">Annual Economic Report</a> (5 MB, .PDF)</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/publications/pdf/Airdrie community report for 2006_sm.pdf">Annual Community Report</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span><strong>City Council & Administration </strong></span>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/index.cfm">2007 Election</a>
|
||||
<ul>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/city_council.cfm" title="City Council">City Council</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/candidates.cfm" title="Candidates">Candidates</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/candidate_information_package.cfm" title="Candidate Information Package">Candidate Information Package</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/faq.cfm" title="Frequently Asked Questions">Frequently Asked Questions</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/how_to_vote.cfm" title="How to Vote">How to Vote</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/media.cfm" title="Media">Media</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/past_elections.cfm" title="Past Elections">Past Elections</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/finance/budget_at_a_glance.cfm">Budget</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/bylaws/index.cfm">Bylaws</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/bylaws/how_bylaws_are_passed.cfm">How Bylaws Are Passed</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/bylaws/new_laws.cfm">New Laws</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/policies.cfm">Policies</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/census/index.cfm">Census</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/index.cfm">City Council</a></li>
|
||||
|
||||
</ul>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/board_appointments.cfm">Board Appointments</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/committees_boards_commission.cfm">Committees / Boards / Commssion</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/library_board.cfm" title="Airdrie Municipal Library Board">Airdrie Municipal Library Board</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/assessment_review_board.cfm" title="Assessment Review Board">Assessment Review Board</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/community_service_advisory_board.cfm" title="Community Services Advisory Board">Community Services Advisory Board</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/enviromental_advisory_board.cfm" title="Environmental Advisory Board">Environmental Advisory Board</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/finance_committee.cfm" title="Finance Advisory Committee">Finance Advisory Committee</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/municipal_planning_commission.cfm" title="Municipal Planning Commission">Municipal Planning Commission</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/municipal_police_committee.cfm" title="Municipal Police Committee">Municipal Police Committee</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/subdivision_development_appeal_board.cfm" title="Subdivision and Development Appeal Board">Subdivision and Development Appeal Board</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/faq.cfm">Frequently Asked Questions (FAQ's)</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/mayors_message.cfm">Mayor's Message</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/mission_vision.cfm">Mission and Vision</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/meet_your_council.cfm">Meet Your Council</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities.cfm">Strategic Priorities</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities.cfm" title="Strategic Priorities 2008">Strategic Priorities 2008</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_07.cfm" title="Strategic Priorities 2007">Strategic Priorities 2007</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_06.cfm" title="Strategic Priorities 2006">Strategic Priorities 2006</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_05.cfm" title="Strategic Priorities 2005">Strategic Priorities 2005</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_04.cfm" title="Strategic Priorities 2004">Strategic Priorities 2004</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/city_council_meetings.cfm">City Council Meetings</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2007_agendas.cfm">City Council Meeting Agendas</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2007_agendas.cfm" title="2007 Agendas">2007 City Council Meeting Agendas</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2006_agendas.cfm" title="2006 Agendas">2006 City Council Meeting Agendas</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2005_agendas.cfm" title="2005 Agendas">2005 City Council Meeting Agendas</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2004_agendas.cfm" title="2004 Agendas">2004 City Council Meeting Agendas</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2007_minutes.cfm">City Council Meeting Minutes</a>
|
||||
<ul>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2007_minutes.cfm" title="2007 City Council Meeting Minutes">2007 City Council Meeting Minutes</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2006_minutes.cfm" title="2006 City Council Meeting Minutes">2006 City Council Meeting Minutes</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2005_minutes.cfm" title="2005 City Council Meeting Minutes">2005 City Council Meeting Minutes</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2004_minutes.cfm" title="2004 City Council Meeting Minutes">2004 City Council Meeting Minutes</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2007_synopsis.cfm">City Council Meeting Synopsis</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2007_synopsis.cfm" title="2007 City Council Meeting Synopsis">2007 City Council Meeting Synopsis</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2006_synopsis.cfm" title="2006 City Council Meeting Synopsis">2006 City Council Meeting Synopsis</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2005_synopsis.cfm" title="2005 City Council Meeting Synopsis">2005 City Council Meeting Synopsis</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2004_synopsis.cfm" title="2004 City Council Meeting Synopsis">2004 City Council Meeting Synopsis</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/how_to_go_to_council.cfm">How to Go to Council</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/foip.cfm">FOIP</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/how_government_works.cfm">How Government Works</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/legislative_admin_services.cfm">Legislative & Admin Services</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/city_managers_message.cfm">City Manager's Message</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/org_chart/index.cfm">Organizational Chart</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong><a href="../../../../jquery.treeview/demo/?#">Lifestyle</a></strong>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/about_airdrie/index.cfm">About Airdrie</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/about_airdrie/history.cfm">History</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/index.cfm">Arts & Culture</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/airdrie_art.cfm">Airdrie Art</a></li>
|
||||
<li><a href="?http://www.airdriepubliclibrary.ca/">Airdrie Public Library</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/airdrie_rodeo_ranch.cfm">Airdrie Rodeo Ranch</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/index.cfm">Bert Church LIVE Theatre</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/twinning_program/index.cfm">Korean Twinning Program</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/little_theatre_association.cfm">Little Theatre Association</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/sport_community_facilities/nose_creek_valley_museum.cfm">Nose Creek Valley Museum</a></li>
|
||||
<li><a href="?http://www.rockyview.ab.ca/rvae/">Rocky View Adult Education</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/index.cfm">Bert Church LIVE Theatre</a>
|
||||
<ul>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/about_us.cfm" title="About Us">About Us</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/season_program.cfm" title="Current Season Program">Current Season Program</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/box_office.cfm" title="Box Office">Box Office</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/theatre_rental.cfm" title="Theatre Rental">Theatre Rental</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/technical_specifications.cfm" title="Technical Specifications">Technical Specifications</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/contact_us.cfm" title="Contact Us">Contact Us</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/photogallery.cfm" title="Photo Gallery">Photo Gallery</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/links.cfm" title="Links">Links</a></li>
|
||||
<li><a href="?http://www.theresawasden.com/music_in_common.htm" title="Performing Arts Classes">Performing Arts Classes</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/index.cfm">East Lake Recreation & Wellness Centre</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/about_facility.cfm" title="About the Facility">About the Facility</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/contact.cfm" title="Contact Us">Contact Us</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/forms.cfm" title="Forms">Forms</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/future_phases.cfm" title="Future Phases">Future Phases</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/hours_operation.cfm" title="Hours of Operation & Schedules">Hours of Operation & Schedules</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/schedules.cfm">Schedules</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/city_guide.cfm" title="In the City Guide">In the City Guide</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/opportunities_events.cfm" title="Opportunities & Events">Opportunities & Events</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/programs_services.cfm" title="Programs & Services">Programs & Services</a>
|
||||
<ul>
|
||||
<li><a title="Aquatics" href="../../../../jquery.treeview/demo/?/elrwc/aquatics.cfm">Aquatics</a>
|
||||
<ul>
|
||||
<li><a title="Water Drop-in Classes" href="../../../../jquery.treeview/demo/?/elrwc/water_classes.cfm">Water Drop-in Classes</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Child Care Services" href="../../../../jquery.treeview/demo/?/elrwc/child_services.cfm">Child Care Services</a></li>
|
||||
<li><a title="Children Activities" href="../../../../jquery.treeview/demo/?/elrwc/children_activities.cfm">Children Activities</a></li>
|
||||
<li><a title="Fitness & Wellness" href="../../../../jquery.treeview/demo/?/elrwc/fitness_wellness.cfm">Fitness & Wellness</a>
|
||||
|
||||
<ul>
|
||||
<li><a title="Dry Land Drop-in Classes" href="../../../../jquery.treeview/demo/?/elrwc/land_classes.cfm">Dry Land Drop-in Classes</a></li>
|
||||
<li><a title="Fitness & Wellness Services" href="../../../../jquery.treeview/demo/?/elrwc/fitness_wellness_services.cfm">Fitness & Wellness Services</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Party Packages" href="../../../../jquery.treeview/demo/?/elrwc/party_packages.cfm">Party Packages</a></li>
|
||||
|
||||
<li><a title="Room Rentals" href="../../../../jquery.treeview/demo/?/elrwc/room_rentals.cfm">Room Rentals</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/rates_fees.cfm" title="Rates & Fees">Rates & Fees</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/register_now.cfm" title="Register Now">Register Now</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/education/index.cfm">Education</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/health/index.cfm">Health</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/gis/index.cfm">Maps (GIS)</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
||||
|
||||
<li><a title="Parks" href="../../../../jquery.treeview/demo/?/parks/index.cfm">Parks</a>
|
||||
<ul>
|
||||
<li><a title="City Parks Programs" href="../../../../jquery.treeview/demo/?city_parks_programs.cfm">City Parks Programs</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?airdrie_horticulture_society.cfm" title="Airdrie Horticulture Society">Airdrie Horticulture Society</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?communities_in_bloom.cfm" title="Communities in Bloom">Communities in Bloom</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?community_garden.cfm" title="Community Garden">Community Garden</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?landscape_awards_program.cfm" title="Landscape Awards Program">Landscape Awards Program</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Maintenance" href="../../../../jquery.treeview/demo/?maintenance.cfm">Maintenance</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?dandelions.cfm" title="Dandelions">Dandelions</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?gophers.cfm" title="Gophers">Gophers</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?grass_cutting.cfm" title="Grass Cutting">Grass Cutting</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?pathway_snow_removal.cfm" title="Pathway Snow Removal">Pathway Snow Removal</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Maps" href="../../../../jquery.treeview/demo/?/gis/index.cfm">Maps</a></li>
|
||||
<li><a title="Outdoor Facilities" href="../../../../jquery.treeview/demo/?outdoor_facilities.cfm">Outdoor Facilities</a>
|
||||
<ul>
|
||||
|
||||
<li><a title="Ball Diamonds" href="../../../../jquery.treeview/demo/?ball_diamonds.cfm">Ball Diamonds</a></li>
|
||||
<li><a title="BMX Track" href="../../../../jquery.treeview/demo/?bmx_track.cfm">BMX Track</a></li>
|
||||
<li><a title="Bookings" href="../../../../jquery.treeview/demo/?bookings.cfm">Bookings</a></li>
|
||||
<li><a title="Cemetery" href="../../../../jquery.treeview/demo/?cemetery.cfm">Cemetery</a></li>
|
||||
<li><a title="Fire Pits" href="../../../../jquery.treeview/demo/?fire_pits.cfm">Fire Pits</a></li>
|
||||
<li><a title="Gwacheon Park" href="../../../../jquery.treeview/demo/?/twinning_program/index.cfm#gwacheon">Gwacheon Park</a></li>
|
||||
|
||||
<li><a title="Off-Leash Areas" href="../../../../jquery.treeview/demo/?off_leash_areas.cfm">Off-Leash Areas</a></li>
|
||||
<li><a title="Outdoor Rinks" href="../../../../jquery.treeview/demo/?outdoor_rinks.cfm">Outdoor Rinks</a></li>
|
||||
<li><a title="Parks & Playgrounds" href="../../../../jquery.treeview/demo/?parks_playgrounds.cfm">Parks & Playgrounds</a></li>
|
||||
<li><a title="Skate Park" href="../../../../jquery.treeview/demo/?skate_park.cfm">Skate Park</a></li>
|
||||
<li><a title="Soccer/Athletic Fields" href="../../../../jquery.treeview/demo/?soccer_athletic_fields.cfm">Soccer/Athletic Fields</a></li>
|
||||
<li><a title="Splash Park" href="../../../../jquery.treeview/demo/?splash_park.cfm">Splash Park</a></li>
|
||||
|
||||
<li><a title="Tennis Courts" href="../../../../jquery.treeview/demo/?tennis_courts.cfm">Tennis Courts</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Parks Planning & Construction" href="../../../../jquery.treeview/demo/?parks_planning_construction.cfm">Parks Planning & Construction</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?construction.cfm" title="Construction">Construction</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?plans.cfm" title="Plans">Plans</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Urban Forest" href="../../../../jquery.treeview/demo/?urban_forest.cfm">Urban Forest</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?city_trees.cfm" title="City Trees">City Trees</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?tree_planting.cfm" title="Tree Planting">Tree Planting</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a title="Weeds & Pests" href="../../../../jquery.treeview/demo/?weeds_pests.cfm">Weeds & Pests</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?mosquito_control.cfm" title="Mosquito Control">Mosquito Control</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?pest_control.cfm" title="Pest Control">Pest Control</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?weed_control_plant_disease.cfm" title="Weed Control & Plant Disease">Weed Control & Plant Disease</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Sport & Community Facilities" href="../../../../jquery.treeview/demo/?/sport_community_facilities/index.cfm">Sport & Community Facilities</a>
|
||||
<ul>
|
||||
<li><a title="Indoor Facilities" href="../../../../jquery.treeview/demo/?/sport_community_facilities/indoor_facilities.cfm">Indoor Facilities</a>
|
||||
|
||||
<ul>
|
||||
<li><a title="Arenas/Gymnastics" href="../../../../jquery.treeview/demo/?/sport_community_facilities/arenas_gymnastics.cfm">Arenas/Gymnastics</a></li>
|
||||
<li><a title="Curling Rink" href="../../../../jquery.treeview/demo/?/sport_community_facilities/curling_rink.cfm">Curling Rink</a></li>
|
||||
<li><a title="East Lake Recreation & Wellness Centre" href="../../../../jquery.treeview/demo/?/elrwc/index.cfm">East Lake Recreation & Wellness Centre</a></li>
|
||||
<li><a title="Nose Creek Valley Museum" href="../../../../jquery.treeview/demo/?/sport_community_facilities/nose_creek_valley_museum.cfm">Nose Creek Valley Museum</a></li>
|
||||
<li><a title="Over 50 Club" href="../../../../jquery.treeview/demo/?/sport_community_facilities/over_50_club.cfm">Over 50 Club</a></li>
|
||||
|
||||
<li><a title="Town & Country" href="../../../../jquery.treeview/demo/?/sport_community_facilities/town_country.cfm">Town & Country</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Outdoor Facilities" href="../../../../jquery.treeview/demo/?/parks/outdoor_facilities.cfm">Outdoor Facilities</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><strong><a href="../../../../jquery.treeview/demo/?#">Visiting</a></strong>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/video/index.cfm">Airdrie LIFE Video</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/gis/recreation_map/index.cfm">Community Map</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/events/index.cfm">Events</a>
|
||||
<ul>
|
||||
|
||||
<li><a href="?http://www.airdriefestivaloflights.com">Airdrie Festival of Lights</a></li>
|
||||
<li><a href="?http://www.airdrieprorodeo.net/">Airdrie Pro Rodeo</a></li>
|
||||
<li><a href="?http://www.pch.gc.ca/special/canada/index_e.cfm">Canada Day</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/tourist_information/tourist_information.cfm">Tourist Information</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/entertainment/entertainment.cfm">Entertainment</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/hotels/hotels.cfm">Hotels</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/restaurants/restaurants.cfm">Restaurants</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/shopping/shopping.cfm">Shopping</a></li>
|
||||
|
||||
<li><a href="?http://www1.travelalberta.com/en-ab/index.cfm?country=CA&state=AB&setlocale=1">Travel Alberta</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="?http://www.woodsidegc.com/contact.html">Woodside Golf Course</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong><a href="../../../../jquery.treeview/demo/?/economic_development/index.cfm">Doing Business</a></strong>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_attraction/index.cfm">Business Attraction</a>
|
||||
<ul>
|
||||
<li><a href="?http://www.albertafirst.com/profiles/statspack/20365.html">Airdrie Profile</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_attraction/business_case.cfm">Business Case For Airdrie</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/census/index.cfm">Census Data </a></li>
|
||||
<li><a href="?http://www.albertafirst.com/realestate/">Properties and Businesses For Sale</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/taxation/non_residential_comparisons.cfm">Taxation</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/index.cfm">Business Development</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/business_associations.cfm">Business Associations</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/business_resources.cfm">Business Resources</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/business_services.cfm">Business Services</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/corporate_properties/index.cfm">Corporate Properties</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/home_businesses.cfm">Home Based Businesses</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/directories/business_directory/index.cfm">Business Directory</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/index.cfm">Business Licenses</a>
|
||||
<ul>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/municipal_licenses_permits.cfm">Municipal Licenses & Permits</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/provincial_licenses_permits.cfm">Provincial Licenses & Permits</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/registry_services.cfm">Registry Services</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="?http://bsa.canadabusiness.ca/gol/bsa/site.nsf/en/index.html">How to Start a Business</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/finance/procurement_services.cfm">Procurement Services</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong><a href="?https://vch.airdrie.ca/index.cfm">Online Services</a></strong></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
621
rus/admin/_V4/_lib/jquery.treeview/demo/prerendered.html
Normal file
621
rus/admin/_V4/_lib/jquery.treeview/demo/prerendered.html
Normal file
|
|
@ -0,0 +1,621 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<link rel="stylesheet" href="../jquery.treeview.css" />
|
||||
<link rel="stylesheet" href="../../../../jquery.treeview/red-treeview.css" />
|
||||
<link rel="stylesheet" href="screen.css" />
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
|
||||
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$("#tree").treeview({
|
||||
collapsed: true,
|
||||
animated: "medium",
|
||||
control:"#sidetreecontrol",
|
||||
prerendered: true,
|
||||
persist: "location"
|
||||
});
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
||||
<div id="main">
|
||||
|
||||
<a href="../../../../jquery.treeview/demo">Main Demo</a>
|
||||
|
||||
<div id="sidetree">
|
||||
<div class="treeheader"> </div>
|
||||
<div id="sidetreecontrol"> <a href="../../../../jquery.treeview/demo/?#">Collapse All</a> | <a href="../../../../jquery.treeview/demo/?#">Expand All</a> </div>
|
||||
|
||||
<ul class="treeview" id="tree">
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/index.cfm"><strong>Home</strong></a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/enewsletters/index.cfm">Airdrie eNewsletters </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Airdrie Directories</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/video/index.cfm">Airdrie Life Video</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Airdrie News</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Airdrie Quick Links</a></li>
|
||||
<li><a href="?http://weather.ibegin.com/ca/ab/airdrie/" target="_blank">Airdrie Weather</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/human_resources/index.cfm">Careers</a> | <a href="../../../../jquery.treeview/demo/?/contact_us/index.cfm">Contact Us</a> | <a href="../../../../jquery.treeview/demo/?/site_map/index.cfm">Site Map</a> | <a href="../../../../jquery.treeview/demo/?/links/index.cfm">Links</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/calendars/index.cfm">Community Calendar </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/conditions_of_use/index.cfm">Conditions of Use and Privacy Statement</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">I'd like to find out about... </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/index.cfm">Opportunities</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/links/index.cfm">Resource Links</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/index.cfm">Special Notices</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><span><strong>City Services</strong></span>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/assessment/index.cfm">Assessment</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/assessment_faqs.cfm">Assessment FAQs</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/property_assessment_notices.cfm">2007 Property Assessment Notices</a></li>
|
||||
<li><a href="?http://www.creb.com/" target="_blank">CREB</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/non_residential_assessment_tax_comparisons.cfm">Non-Residential Assessment / Tax Comparisons</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/assessment/how_to_file_a_complaint.cfm">How to File a Complaint</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/assessment/supplementary_assessment_tax.cfm">Supplementary Assessment and Tax</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/building_development/index.cfm">Building & Development </a>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/building_inspections/index.cfm">Building Inspections</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/builder_forums.cfm">Builder Forums</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/contact_us.cfm">Contact Us</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/contractor_notices.cfm">Contractor Notices</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/inspector_guidelines.cfm">Inspector Guidelines</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/links.cfm">Links</a></li>
|
||||
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/building_inspections/statistics_2007.cfm">Statistics</a>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_inspections/statistics_2006.cfm">Statistics 2006</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/building_inspections/statistics_2005.cfm">Statistics 2005</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="City Infrastructure" href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/index.cfm">City Infrastructure</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/roadway_improvement.cfm">Roadway Improvement</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/traffic.cfm">Traffic</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/transportation_planning.cfm">Transportation & Infrastructure Planning</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/building_development/city_infrastructure/water_sewer_construction.cfm">Water & Sewer Construction</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Commercial/Industrial Development" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/index.cfm">Commercial / Industrial / Multi-Family Development</a>
|
||||
<ul style="display: none;">
|
||||
<li><a title="Call Before You Dig" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/call_before_you_dig.cfm">Call Before You Dig</a></li>
|
||||
<li><a title="New Development" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/new_development.cfm">New Development</a></li>
|
||||
<li><a title="Existing Development" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/existing_development.cfm">Existing Development</a></li>
|
||||
|
||||
<li><a title="Signage" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/signage.cfm">Signage</a></li>
|
||||
<li><a title="Notice of Development" href="../../../../jquery.treeview/demo/?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development</a></li>
|
||||
<li><a title="Appeals" href="../../../../jquery.treeview/demo/?/public_meetings/appeals/index.cfm">Appeals</a></li>
|
||||
<li><a title="Customer Feedback" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/customer_feedback.cfm">Customer Feedback</a></li>
|
||||
<li><a title="Certificate of Compliance" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/certificate_of_compliance.cfm">Certificate of Compliance</a></li>
|
||||
<li><a title="Permit Applications & Forms" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/permit_applications_forms.cfm">Permit Applications & Forms</a></li>
|
||||
|
||||
<li class="last"><a title="Fees" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/fees.cfm">Fees</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><!-- This links to an empty content page (25 Sept 2007) --> <a title="Residential Development" href="../../../../jquery.treeview/demo/?/building_development/residential_development/index.cfm">Residential Development</a>
|
||||
<ul style="display: none;">
|
||||
<li><a title="Call Before You Dig" href="../../../../jquery.treeview/demo/?/building_development/residential_construction/building_permit_requirements.cfm">Building Permit Requirements</a></li>
|
||||
<li><a title="New Development" href="../../../../jquery.treeview/demo/?/building_development/residential_construction/new_homes.cfm">New Homes</a></li>
|
||||
|
||||
<li><a title="Existing Development" href="../../../../jquery.treeview/demo/?/building_development/residential_construction/basements.cfm">Basements</a></li>
|
||||
<li><a title="Signage" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/call_before_you_dig.cfm">Call Before You Dig</a></li>
|
||||
<li><a title="Decks" href="../../../../jquery.treeview/demo/?/building_development/residential_development/decks.cfm">Decks</a></li>
|
||||
<li><a title="Detached Garages or Accessory Building" href="../../../../jquery.treeview/demo/?/building_development/residential_development/detached_garages_or_accessory_building.cfm">Detached Garages or Accessory Building</a></li>
|
||||
<li><a title="Grading" href="../../../../jquery.treeview/demo/?/building_development/residential_development/grading.cfm">Grading</a></li>
|
||||
<li><a title="Fences" href="../../../../jquery.treeview/demo/?/building_development/residential_development/fences.cfm">Fences</a></li>
|
||||
|
||||
<li><a title="Applications, Permits & Checklists" href="../../../../jquery.treeview/demo/?/building_development/residential_development/applications_permits_checklists.cfm">Applications, Permits & Checklists</a></li>
|
||||
<li><a title="Certificate of Compliance" href="../../../../jquery.treeview/demo/?/building_development/commercial_industrial_development/certificate_of_compliance.cfm">Certificate of Compliance</a></li>
|
||||
<li><a title="Fees" href="../../../../jquery.treeview/demo/?/building_development/residential_development/fees.cfm">Fees</a></li>
|
||||
<li><a title="Notice of Development" href="../../../../jquery.treeview/demo/?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development</a></li>
|
||||
<li class="last"><a title="Street Addresses for New Construction" href="../../../../jquery.treeview/demo/?/gis/index.cfm">Street Addresses for New Construction</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/community_safety/index.cfm">Community Safety</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/disaster_services/index.cfm">Disaster Services</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/emergency_services/index.cfm">Emergency Services</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/municipal_enforcement/index.cfm">Municipal Enforcement</a></li>
|
||||
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/rcmp/index.cfm">Royal Canadian Mounted Police</a>
|
||||
<ul style="display: none;">
|
||||
<li><a title="Community Partnership Programs" href="../../../../jquery.treeview/demo/?/rcmp/community_partnership_programs.cfm">Community Partnership Programs</a></li>
|
||||
<li class="last"><a title="Traffic Services" href="../../../../jquery.treeview/demo/?/rcmp/traffic_services.cfm">Traffic Services</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/community_services/index.cfm">Community Services</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/directories/community_directory/index.cfm">Community Directory</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/calendars/index.cfm">Community Calendar</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/engineering/index.cfm">Engineering Services </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/finance/index.cfm">Finance</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/gis/index.cfm">Maps (GIS)</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_works/index.cfm">Public Works</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/recycling_waste/index.cfm">Recycling, Waste & Composting</a>
|
||||
<ul style="display: none;">
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/environmental_services/index.cfm">Environmental Services </a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/social_planning/index.cfm">Social Planning</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/taxation/index.cfm">Taxation</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/transit/index.cfm">Transit</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/utilities/index.cfm">Water & Sewer (Utilities)</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><span><strong>News</strong></span>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/enewsletters/index.cfm">Airdrie eNewsletters</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="?http://www.industrymailout.com/Industry/View.aspx?id=50169&p=679b" target="_new">Airdrie Today eNewsletter</a></li>
|
||||
|
||||
<li><a href="?http://www.industrymailout.com/Industry/View.aspx?id=47265&q=0&qz=4c4af0" target="_new">Airdrie @Work eNewsletter</a></li>
|
||||
<li class="last"><a href="?http://www.industrymailout.com/Industry/Archives.aspx?m=2682&qz=73249dbb" target="_new">Airdrie eNewsletter Archive</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/calendars/index.cfm">Community Calendar</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/community_news/index.cfm">Community News</a></li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/news_release/index.cfm">News Releases</a> (2007)
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/news_release/2006/index.cfm" title="2006 News Releases">2006 News Releases</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/news_release/2005/index.cfm" title="2005 News Releases">2005 News Releases</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/news_release/2004/index.cfm" title="2004 News Releases">2004 News Releases</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development </a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/photogallery/index.cfm">Photo Gallery</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/public_meetings/index.cfm">Public Meetings</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_meetings/appeals/index.cfm">Appeals</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/public_meetings/open_houses/index.cfm">Open Houses</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/public_meetings/public_hearings/index.cfm">Public Hearings</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/publications/index.cfm">Publications</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/publications/pdf/AirdrieLIFE_fall2006.pdf">Airdrie Life Magazine</a> (16MB, .PDF)</li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/publications/pdf/report_for_2005.pdf">Annual Economic Report</a> (5 MB, .PDF)</li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/publications/pdf/Airdrie community report for 2006_sm.pdf">Annual Community Report</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><span><strong>City Council & Administration </strong></span>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/election/index.cfm">2007 Election</a>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/city_council.cfm" title="City Council">City Council</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/candidates.cfm" title="Candidates">Candidates</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/candidate_information_package.cfm" title="Candidate Information Package">Candidate Information Package</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/faq.cfm" title="Frequently Asked Questions">Frequently Asked Questions</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/how_to_vote.cfm" title="How to Vote">How to Vote</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/election/media.cfm" title="Media">Media</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/election/past_elections.cfm" title="Past Elections">Past Elections</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/finance/budget_at_a_glance.cfm">Budget</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/bylaws/index.cfm">Bylaws</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/bylaws/how_bylaws_are_passed.cfm">How Bylaws Are Passed</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/bylaws/new_laws.cfm">New Laws</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/policies.cfm">Policies</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/census/index.cfm">Census</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/index.cfm">City Council</a></li>
|
||||
|
||||
</ul>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/board_appointments.cfm">Board Appointments</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/committees_boards_commission.cfm">Committees / Boards / Commssion</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/library_board.cfm" title="Airdrie Municipal Library Board">Airdrie Municipal Library Board</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/assessment_review_board.cfm" title="Assessment Review Board">Assessment Review Board</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/community_service_advisory_board.cfm" title="Community Services Advisory Board">Community Services Advisory Board</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/enviromental_advisory_board.cfm" title="Environmental Advisory Board">Environmental Advisory Board</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/finance_committee.cfm" title="Finance Advisory Committee">Finance Advisory Committee</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/municipal_planning_commission.cfm" title="Municipal Planning Commission">Municipal Planning Commission</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/municipal_police_committee.cfm" title="Municipal Police Committee">Municipal Police Committee</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/subdivision_development_appeal_board.cfm" title="Subdivision and Development Appeal Board">Subdivision and Development Appeal Board</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/faq.cfm">Frequently Asked Questions (FAQ's)</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/mayors_message.cfm">Mayor's Message</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/mission_vision.cfm">Mission and Vision</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/meet_your_council.cfm">Meet Your Council</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities.cfm">Strategic Priorities</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities.cfm" title="Strategic Priorities 2008">Strategic Priorities 2008</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_07.cfm" title="Strategic Priorities 2007">Strategic Priorities 2007</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_06.cfm" title="Strategic Priorities 2006">Strategic Priorities 2006</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_05.cfm" title="Strategic Priorities 2005">Strategic Priorities 2005</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/strategic_priorities_04.cfm" title="Strategic Priorities 2004">Strategic Priorities 2004</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/city_council_meetings.cfm">City Council Meetings</a>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2007_agendas.cfm">City Council Meeting Agendas</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2007_agendas.cfm" title="2007 Agendas">2007 City Council Meeting Agendas</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2006_agendas.cfm" title="2006 Agendas">2006 City Council Meeting Agendas</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2005_agendas.cfm" title="2005 Agendas">2005 City Council Meeting Agendas</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/agendas/2004_agendas.cfm" title="2004 Agendas">2004 City Council Meeting Agendas</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2007_minutes.cfm">City Council Meeting Minutes</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2007_minutes.cfm" title="2007 City Council Meeting Minutes">2007 City Council Meeting Minutes</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2006_minutes.cfm" title="2006 City Council Meeting Minutes">2006 City Council Meeting Minutes</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2005_minutes.cfm" title="2005 City Council Meeting Minutes">2005 City Council Meeting Minutes</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/minutes/2004_minutes.cfm" title="2004 City Council Meeting Minutes">2004 City Council Meeting Minutes</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2007_synopsis.cfm">City Council Meeting Synopsis</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2007_synopsis.cfm" title="2007 City Council Meeting Synopsis">2007 City Council Meeting Synopsis</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2006_synopsis.cfm" title="2006 City Council Meeting Synopsis">2006 City Council Meeting Synopsis</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2005_synopsis.cfm" title="2005 City Council Meeting Synopsis">2005 City Council Meeting Synopsis</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/synopsis/2004_synopsis.cfm" title="2004 City Council Meeting Synopsis">2004 City Council Meeting Synopsis</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/how_to_go_to_council.cfm">How to Go to Council</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/foip.cfm">FOIP</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/city_council/how_government_works.cfm">How Government Works</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/city_council/legislative_admin_services.cfm">Legislative & Admin Services</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/city_council/city_managers_message.cfm">City Manager's Message</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/org_chart/index.cfm">Organizational Chart</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><strong><a href="../../../../jquery.treeview/demo/?#">Lifestyle</a></strong>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/about_airdrie/index.cfm">About Airdrie</a>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/about_airdrie/history.cfm">History</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/arts_culture/index.cfm">Arts & Culture</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/airdrie_art.cfm">Airdrie Art</a></li>
|
||||
|
||||
<li><a href="?http://www.airdriepubliclibrary.ca/" target="_new">Airdrie Public Library</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/airdrie_rodeo_ranch.cfm">Airdrie Rodeo Ranch</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/index.cfm">Bert Church LIVE Theatre</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/twinning_program/index.cfm">Korean Twinning Program</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/arts_culture/little_theatre_association.cfm">Little Theatre Association</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/sport_community_facilities/nose_creek_valley_museum.cfm" target="_new">Nose Creek Valley Museum</a></li>
|
||||
|
||||
<li class="last"><a href="?http://www.rockyview.ab.ca/rvae/" target="_new">Rocky View Adult Education</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/index.cfm">Bert Church LIVE Theatre</a>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/about_us.cfm" title="About Us">About Us</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/season_program.cfm" title="Current Season Program">Current Season Program</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/box_office.cfm" title="Box Office">Box Office</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/theatre_rental.cfm" title="Theatre Rental">Theatre Rental</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/technical_specifications.cfm" title="Technical Specifications">Technical Specifications</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/contact_us.cfm" title="Contact Us">Contact Us</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/photogallery.cfm" title="Photo Gallery">Photo Gallery</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/bert_church_theatre/links.cfm" title="Links">Links</a></li>
|
||||
|
||||
<li class="last"><a href="?http://www.theresawasden.com/music_in_common.htm" target="_blank" title="Performing Arts Classes">Performing Arts Classes</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/elrwc/index.cfm">East Lake Recreation & Wellness Centre</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/about_facility.cfm" title="About the Facility">About the Facility</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/contact.cfm" title="Contact Us">Contact Us</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/forms.cfm" title="Forms">Forms</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/future_phases.cfm" title="Future Phases">Future Phases</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/elrwc/hours_operation.cfm" title="Hours of Operation & Schedules">Hours of Operation & Schedules</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/elrwc/schedules.cfm">Schedules</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/city_guide.cfm" title="In the City Guide">In the City Guide</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/opportunities_events.cfm" title="Opportunities & Events">Opportunities & Events</a></li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/elrwc/programs_services.cfm" title="Programs & Services">Programs & Services</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Aquatics" href="../../../../jquery.treeview/demo/?/elrwc/aquatics.cfm">Aquatics</a>
|
||||
<ul style="display: none;">
|
||||
<li class="last"><a title="Water Drop-in Classes" href="../../../../jquery.treeview/demo/?/elrwc/water_classes.cfm">Water Drop-in Classes</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Child Care Services" href="../../../../jquery.treeview/demo/?/elrwc/child_services.cfm">Child Care Services</a></li>
|
||||
|
||||
<li><a title="Children Activities" href="../../../../jquery.treeview/demo/?/elrwc/children_activities.cfm">Children Activities</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Fitness & Wellness" href="../../../../jquery.treeview/demo/?/elrwc/fitness_wellness.cfm">Fitness & Wellness</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a title="Dry Land Drop-in Classes" href="../../../../jquery.treeview/demo/?/elrwc/land_classes.cfm">Dry Land Drop-in Classes</a></li>
|
||||
<li class="last"><a title="Fitness & Wellness Services" href="../../../../jquery.treeview/demo/?/elrwc/fitness_wellness_services.cfm">Fitness & Wellness Services</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a title="Party Packages" href="../../../../jquery.treeview/demo/?/elrwc/party_packages.cfm">Party Packages</a></li>
|
||||
|
||||
<li class="last"><a title="Room Rentals" href="../../../../jquery.treeview/demo/?/elrwc/room_rentals.cfm">Room Rentals</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/elrwc/rates_fees.cfm" title="Rates & Fees">Rates & Fees</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/elrwc/register_now.cfm" title="Register Now">Register Now</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/education/index.cfm">Education</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/health/index.cfm">Health</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/gis/index.cfm">Maps (GIS)</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Parks" href="../../../../jquery.treeview/demo/?/parks/index.cfm">Parks</a>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="City Parks Programs" href="../../../../jquery.treeview/demo/?city_parks_programs.cfm">City Parks Programs</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?airdrie_horticulture_society.cfm" title="Airdrie Horticulture Society">Airdrie Horticulture Society</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?communities_in_bloom.cfm" title="Communities in Bloom">Communities in Bloom</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?community_garden.cfm" title="Community Garden">Community Garden</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?landscape_awards_program.cfm" title="Landscape Awards Program">Landscape Awards Program</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Maintenance" href="../../../../jquery.treeview/demo/?maintenance.cfm">Maintenance</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?dandelions.cfm" title="Dandelions">Dandelions</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?gophers.cfm" title="Gophers">Gophers</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?grass_cutting.cfm" title="Grass Cutting">Grass Cutting</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?pathway_snow_removal.cfm" title="Pathway Snow Removal">Pathway Snow Removal</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a title="Maps" href="../../../../jquery.treeview/demo/?/gis/index.cfm">Maps</a></li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Outdoor Facilities" href="../../../../jquery.treeview/demo/?outdoor_facilities.cfm">Outdoor Facilities</a>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a title="Ball Diamonds" href="../../../../jquery.treeview/demo/?ball_diamonds.cfm">Ball Diamonds</a></li>
|
||||
<li><a title="BMX Track" href="../../../../jquery.treeview/demo/?bmx_track.cfm">BMX Track</a></li>
|
||||
|
||||
<li><a title="Bookings" href="../../../../jquery.treeview/demo/?bookings.cfm">Bookings</a></li>
|
||||
<li><a title="Cemetery" href="../../../../jquery.treeview/demo/?cemetery.cfm">Cemetery</a></li>
|
||||
<li><a title="Fire Pits" href="../../../../jquery.treeview/demo/?fire_pits.cfm">Fire Pits</a></li>
|
||||
<li><a title="Gwacheon Park" href="../../../../jquery.treeview/demo/?/twinning_program/index.cfm#gwacheon">Gwacheon Park</a></li>
|
||||
|
||||
<li><a title="Off-Leash Areas" href="../../../../jquery.treeview/demo/?off_leash_areas.cfm">Off-Leash Areas</a></li>
|
||||
<li><a title="Outdoor Rinks" href="../../../../jquery.treeview/demo/?outdoor_rinks.cfm">Outdoor Rinks</a></li>
|
||||
|
||||
<li><a title="Parks & Playgrounds" href="../../../../jquery.treeview/demo/?parks_playgrounds.cfm">Parks & Playgrounds</a></li>
|
||||
<li><a title="Skate Park" href="../../../../jquery.treeview/demo/?skate_park.cfm">Skate Park</a></li>
|
||||
<li><a title="Soccer/Athletic Fields" href="../../../../jquery.treeview/demo/?soccer_athletic_fields.cfm">Soccer/Athletic Fields</a></li>
|
||||
<li><a title="Splash Park" href="../../../../jquery.treeview/demo/?splash_park.cfm">Splash Park</a></li>
|
||||
|
||||
<li class="last"><a title="Tennis Courts" href="../../../../jquery.treeview/demo/?tennis_courts.cfm">Tennis Courts</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Parks Planning & Construction" href="../../../../jquery.treeview/demo/?parks_planning_construction.cfm">Parks Planning & Construction</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?construction.cfm" title="Construction">Construction</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?plans.cfm" title="Plans">Plans</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Urban Forest" href="../../../../jquery.treeview/demo/?urban_forest.cfm">Urban Forest</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?city_trees.cfm" title="City Trees">City Trees</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?tree_planting.cfm" title="Tree Planting">Tree Planting</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a title="Weeds & Pests" href="../../../../jquery.treeview/demo/?weeds_pests.cfm">Weeds & Pests</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?mosquito_control.cfm" title="Mosquito Control">Mosquito Control</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?pest_control.cfm" title="Pest Control">Pest Control</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?weed_control_plant_disease.cfm" title="Weed Control & Plant Disease">Weed Control & Plant Disease</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a title="Sport & Community Facilities" href="../../../../jquery.treeview/demo/?/sport_community_facilities/index.cfm">Sport & Community Facilities</a>
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Indoor Facilities" href="../../../../jquery.treeview/demo/?/sport_community_facilities/indoor_facilities.cfm">Indoor Facilities</a>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li><a title="Arenas/Gymnastics" href="../../../../jquery.treeview/demo/?/sport_community_facilities/arenas_gymnastics.cfm">Arenas/Gymnastics</a></li>
|
||||
<li><a title="Curling Rink" href="../../../../jquery.treeview/demo/?/sport_community_facilities/curling_rink.cfm">Curling Rink</a></li>
|
||||
<li><a title="East Lake Recreation & Wellness Centre" href="../../../../jquery.treeview/demo/?/elrwc/index.cfm">East Lake Recreation & Wellness Centre</a></li>
|
||||
<li><a title="Nose Creek Valley Museum" href="../../../../jquery.treeview/demo/?/sport_community_facilities/nose_creek_valley_museum.cfm">Nose Creek Valley Museum</a></li>
|
||||
|
||||
<li><a title="Over 50 Club" href="../../../../jquery.treeview/demo/?/sport_community_facilities/over_50_club.cfm">Over 50 Club</a></li>
|
||||
|
||||
<li class="last"><a title="Town & Country" href="../../../../jquery.treeview/demo/?/sport_community_facilities/town_country.cfm">Town & Country</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="last"><a title="Outdoor Facilities" href="../../../../jquery.treeview/demo/?/parks/outdoor_facilities.cfm">Outdoor Facilities</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><strong><a href="../../../../jquery.treeview/demo/?#">Visiting</a></strong>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/video/index.cfm">Airdrie LIFE Video</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/gis/recreation_map/index.cfm">Community Map</a></li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/events/index.cfm">Events</a>
|
||||
<ul style="display: none;">
|
||||
|
||||
<li><a href="?http://www.airdriefestivaloflights.com" target="_new">Airdrie Festival of Lights</a></li>
|
||||
<li><a href="?http://www.airdrieprorodeo.net/" target="_new">Airdrie Pro Rodeo</a></li>
|
||||
<li class="last"><a href="?http://www.pch.gc.ca/special/canada/index_e.cfm" target="_new">Canada Day</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/economic_development/tourist_information/tourist_information.cfm">Tourist Information</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/entertainment/entertainment.cfm">Entertainment</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/hotels/hotels.cfm">Hotels</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/restaurants/restaurants.cfm">Restaurants</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/shopping/shopping.cfm">Shopping</a></li>
|
||||
|
||||
<li class="last"><a href="?http://www1.travelalberta.com/en-ab/index.cfm?country=CA&state=AB&setlocale=1" target="_new">Travel Alberta</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="last"><a href="?http://www.woodsidegc.com/contact.html" target="_new">Woodside Golf Course</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><strong><a href="../../../../jquery.treeview/demo/?/economic_development/index.cfm">Doing Business</a></strong>
|
||||
|
||||
<ul style="display: none;">
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/economic_development/business_attraction/index.cfm">Business Attraction</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="?http://www.albertafirst.com/profiles/statspack/20365.html" target="_new">Airdrie Profile</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_attraction/business_case.cfm">Business Case For Airdrie</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/census/index.cfm">Census Data </a></li>
|
||||
<li><a href="?http://www.albertafirst.com/realestate/" target="_new">Properties and Businesses For Sale</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/taxation/non_residential_comparisons.cfm">Taxation</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/index.cfm">Business Development</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/business_associations.cfm">Business Associations</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/business_resources.cfm">Business Resources</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/business_services.cfm">Business Services</a></li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/corporate_properties/index.cfm">Corporate Properties</a></li>
|
||||
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/economic_development/business_development/home_businesses.cfm">Home Based Businesses</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../../jquery.treeview/demo/?/directories/business_directory/index.cfm">Business Directory</a></li>
|
||||
|
||||
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/index.cfm">Business Licenses</a>
|
||||
<ul style="display: none;">
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/municipal_licenses_permits.cfm">Municipal Licenses & Permits</a></li>
|
||||
|
||||
<li><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/provincial_licenses_permits.cfm">Provincial Licenses & Permits</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/economic_development/business_licenses/registry_services.cfm">Registry Services</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="?http://bsa.canadabusiness.ca/gol/bsa/site.nsf/en/index.html" target="_new">How to Start a Business</a></li>
|
||||
<li class="last"><a href="../../../../jquery.treeview/demo/?/finance/procurement_services.cfm">Procurement Services</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="last"><strong><a href="?https://vch.airdrie.ca/index.cfm">Online Services</a></strong></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
24
rus/admin/_V4/_lib/jquery.treeview/demo/screen.css
Normal file
24
rus/admin/_V4/_lib/jquery.treeview/demo/screen.css
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
html, body {height:100%; margin: 0; padding: 0; }
|
||||
|
||||
html>body {
|
||||
font-size: 16px;
|
||||
font-size: 68.75%;
|
||||
} /* Reset Base Font Size */
|
||||
|
||||
body {
|
||||
font-family: Verdana, helvetica, arial, sans-serif;
|
||||
font-size: 68.75%;
|
||||
background: #fff;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
h1, h2 { font-family: 'trebuchet ms', verdana, arial; padding: 10px; margin: 0 }
|
||||
h1 { font-size: large }
|
||||
|
||||
#banner { padding: 15px; background-color: #06b; color: white; font-size: large; border-bottom: 1px solid #ccc;
|
||||
background: url(bg.gif) repeat-x; text-align: center }
|
||||
#banner a { color: white; }
|
||||
|
||||
#main { padding: 1em; }
|
||||
|
||||
a img { border: none; }
|
||||
82
rus/admin/_V4/_lib/jquery.treeview/demo/simple.html
Normal file
82
rus/admin/_V4/_lib/jquery.treeview/demo/simple.html
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
|
||||
<title>jQuery treeView</title>
|
||||
|
||||
<link rel="stylesheet" href="../jquery.treeview.css" />
|
||||
<link rel="stylesheet" href="../../../../jquery.treeview/red-treeview.css" />
|
||||
<link rel="stylesheet" href="screen.css" />
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
|
||||
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
||||
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#browser").treeview({
|
||||
toggle: function() {
|
||||
console.log("%s was toggled.", $(this).find(">span").text());
|
||||
}
|
||||
});
|
||||
|
||||
$("#add").click(function() {
|
||||
var branches = $("<li><span class='folder'>New Sublist</span><ul>" +
|
||||
"<li><span class='file'>Item1</span></li>" +
|
||||
"<li><span class='file'>Item2</span></li></ul></li>").appendTo("#browser");
|
||||
$("#browser").treeview({
|
||||
add: branches
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
||||
<div id="main">
|
||||
|
||||
<a href="../../../../jquery.treeview/demo">Main Demo</a>
|
||||
|
||||
<ul id="browser" class="filetree treeview-famfamfam">
|
||||
<li><span class="folder">Folder 1</span>
|
||||
<ul>
|
||||
<li><span class="folder">Item 1.1</span>
|
||||
<ul>
|
||||
<li><span class="file">Item 1.1.1</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span class="folder">Folder 2</span>
|
||||
<ul>
|
||||
<li><span class="folder">Subfolder 2.1</span>
|
||||
<ul id="folder21">
|
||||
<li><span class="file">File 2.1.1</span></li>
|
||||
<li><span class="file">File 2.1.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span class="folder">Subfolder 2.2</span>
|
||||
<ul>
|
||||
<li><span class="file">File 2.2.1</span></li>
|
||||
<li><span class="file">File 2.2.2</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="closed"><span class="folder">Folder 3 (closed at start)</span>
|
||||
<ul>
|
||||
<li><span class="file">File 3.1</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><span class="file">File 4</span></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<button id="add">Add!</button>
|
||||
|
||||
<p>+/- Icons from <a href="http://www.famfamfam.com/lab/icons/">famfamfam</a></p>
|
||||
|
||||
</div>
|
||||
|
||||
</body></html>
|
||||
87
rus/admin/_V4/_lib/jquery.treeview/demo/source.php
Normal file
87
rus/admin/_V4/_lib/jquery.treeview/demo/source.php
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<?php
|
||||
if ($_REQUEST['root'] == "source"):
|
||||
?>
|
||||
[
|
||||
{
|
||||
"text": "1. Pre Lunch (120 min)",
|
||||
"expanded": true,
|
||||
"classes": "important",
|
||||
"children":
|
||||
[
|
||||
{
|
||||
"text": "1.1 The State of the Powerdome (30 min)"
|
||||
},
|
||||
{
|
||||
"text": "1.2 The Future of jQuery (30 min)"
|
||||
},
|
||||
{
|
||||
"text": "1.2 jQuery UI - A step to richnessy (60 min)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "2. Lunch (60 min)"
|
||||
},
|
||||
{
|
||||
"text": "3. After Lunch (120+ min)",
|
||||
"children":
|
||||
[
|
||||
{
|
||||
"text": "3.1 jQuery Calendar Success Story (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.2 jQuery and Ruby Web Frameworks (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.3 Hey, I Can Do That! (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.4 Taconite and Form (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.5 Server-side JavaScript with jQuery and AOLserver (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.6 The Onion: How to add features without adding features (20 min)",
|
||||
"id": "36",
|
||||
"hasChildren": true
|
||||
},
|
||||
{
|
||||
"text": "3.7 Visualizations with JavaScript and Canvas (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.8 ActiveDOM (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.8 Growing jQuery (20 min)"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
<?php else: ?>
|
||||
[
|
||||
{
|
||||
"text": "1. Review of existing structures",
|
||||
"expanded": true,
|
||||
"children":
|
||||
[
|
||||
{
|
||||
"text": "1.1 jQuery core"
|
||||
},
|
||||
{
|
||||
"text": "1.2 metaplugins"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "2. Wrapper plugins"
|
||||
},
|
||||
{
|
||||
"text": "3. Summary"
|
||||
},
|
||||
{
|
||||
"text": "4. Questions and answers"
|
||||
}
|
||||
|
||||
]
|
||||
<?php endif; ?>
|
||||
87
rus/admin/_V4/_lib/jquery.treeview/demo/source.phps
Normal file
87
rus/admin/_V4/_lib/jquery.treeview/demo/source.phps
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<?php
|
||||
if ($_REQUEST['root'] == "source"):
|
||||
?>
|
||||
[
|
||||
{
|
||||
"text": "1. Pre Lunch (120 min)",
|
||||
"expanded": true,
|
||||
"classes": "important",
|
||||
"children":
|
||||
[
|
||||
{
|
||||
"text": "1.1 The State of the Powerdome (30 min)"
|
||||
},
|
||||
{
|
||||
"text": "1.2 The Future of jQuery (30 min)"
|
||||
},
|
||||
{
|
||||
"text": "1.2 jQuery UI - A step to richnessy (60 min)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "2. Lunch (60 min)"
|
||||
},
|
||||
{
|
||||
"text": "3. After Lunch (120+ min)",
|
||||
"children":
|
||||
[
|
||||
{
|
||||
"text": "3.1 jQuery Calendar Success Story (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.2 jQuery and Ruby Web Frameworks (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.3 Hey, I Can Do That! (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.4 Taconite and Form (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.5 Server-side JavaScript with jQuery and AOLserver (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.6 The Onion: How to add features without adding features (20 min)",
|
||||
"id": "36",
|
||||
"hasChildren": true
|
||||
},
|
||||
{
|
||||
"text": "3.7 Visualizations with JavaScript and Canvas (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.8 ActiveDOM (20 min)"
|
||||
},
|
||||
{
|
||||
"text": "3.8 Growing jQuery (20 min)"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
<?php else: ?>
|
||||
[
|
||||
{
|
||||
"text": "1. Review of existing structures",
|
||||
"expanded": true,
|
||||
"children":
|
||||
[
|
||||
{
|
||||
"text": "1.1 jQuery core"
|
||||
},
|
||||
{
|
||||
"text": "1.2 metaplugins"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "2. Wrapper plugins"
|
||||
},
|
||||
{
|
||||
"text": "3. Summary"
|
||||
},
|
||||
{
|
||||
"text": "4. Questions and answers"
|
||||
}
|
||||
|
||||
]
|
||||
<?php endif; ?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue