$(function(){
	$("#menu > li").hover(
		function(){
			$(this).addClass("active");
		},
		function(){
			$(this).removeClass("active");
		}
	);
	
	// home header image cycle
	var imgs = $("#imagecycle").children();
	if (imgs.length > 1){
		$("#imagecycle").cycle({ 
			fx:      'fade', 
			speed:    1000, 
			timeout:  3000 
		});
	}
	
	// home approved image cycle
	if ($("#approvals").is("div")){
		$("#approvals").cycle({ 
			fx:      'fade', 
			speed:    1000, 
			timeout:  2000 
		});
	}
	
	// rel externals into new windows
	$("a[rel=external]").each(function(){
		$(this).attr("target","_blank");
	});
});
