$(document).ready(function(){
$("#nav>ul>li>a").click(function() {return false;});
$("#nav>ul>li").hover(function(){
		var that = this.getElementsByTagName("ul");
		$(that).addClass("active");
		$(that).slideDown(260);
	},
	function(){
		var that = this.getElementsByTagName("ul");
		$(that).slideUp(260, function() {
			$(that).removeClass("active");
		});
	});
	if ($(".affiliate").length > 0) {
		$(".affiliate").cycle({
			fx: "fade",
			speed: 1200,
			pause: 1,
			timeout: 8800
		});
	}
});