/******************************************************************************
 * Renegade Energy Group Global functions.
 * jQuery framework is required.
 * 
 * Author: Neal Krouse (krousen@comcast.net)
 *
 ******************************************************************************/

$(function() {
	/* drop-down menus */
	var $sub = $("#nav li ul").hide();
	
	
	$("#nav > li").each(function(){
		var $this = $(this);
		$this.hover(
			function(){$("ul", $this).slideDown("slow")},
			function(){$sub.hide()}
		);
		if (window.external && (typeof window.XMLHttpRequest == "undefined")) {
			/* targets ie6 only */
			$sub.show();
			$("#nav li").hover(
				function(){$(this).addClass("hover")},
				function(){$(this).removeClass("hover")}
			);
		}
	});

});