$(document).ready(function(){
	/* Dropdown */
	$("#nav li.top_parent").hover(
		function(){
			$(this).stop().find("ul.ddown").slideDown(250);
		},
		function(){
			$(this).stop().find("ul.ddown").slideUp(250);
		}
	);
	/* On click fade */
	$("#nav ul.ddown").click(function(){
		$(this).stop().fadeOut("slow");
	});
	
	$("#nav li.top_parent_current").hover(
		function(){
			$(this).stop().find("ul.ddown").slideDown(250);
		},
		function(){
			$(this).stop().find("ul.ddown").slideUp(250);
		}
	);
	
	
	setInterval("changeSlide()", 5000);
	
	//setup the banner slides
	for (n = 2; n <= slideLength; n++) {
		$("#slide_"+n).fadeOut("fast");
	}
	
	
});

	//banner rotator
	var curSlide = 1;
	var slideLength = 5;
	
	function changeSlide() {
		$("#slide_" + curSlide).fadeOut(5000);
		curSlide = (curSlide >= slideLength) ? 1 : curSlide + 1;
		$("#slide_" + curSlide).fadeIn(5000);
	}
