// JavaScript Document
$(document).ready(function() {

	dropdownmenu();
	$('#foot').corner();
	
	$('#rss-feeds li a').hover(
		function () 
		{
			$('img', this).attr('src', '/templates/duncrow/images/rss-active-ico.png')
		}, 
		function () 
		{
			$('img', this).attr('src', '/templates/duncrow/images/rss-inactive-ico.png')
		}
	);

});



function dropdownmenu() 
{
	
	if (document.all && document.getElementById) 
	{
		
		navRoot = document.getElementById("main-navi");
		for (i = 0; i < navRoot.childNodes.length; i++) 
		{
			
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI") 
			{
				
				node.onmouseover = function() 
				{
					this.className += " over";
				}
				node.onmouseout = function()
				{
					this.className = this.className.replace(" over", "");
				}
				
			}
			
		}
		
	}
	
}
Ext.onReady(function(){
	Ext.QuickTips.init();
});

