$(document).ready(function(){
	
	// Hide the drop downs
	$("#wrap #fr #navi li ul").hide();
	
	// Function to show them
	$("#wrap #fr #navi li").hover(
		function(){
			$(this).find("a:first").css({ color : "#d6ae11", cursor : "pointer" })
			$(this).find("ul").show();
			
		},
		function(){
			$(this).find("a:first").css({ color : "#FFF", cursor : "default" })
			$(this).find("ul").hide();
		}
	)
	
	$('#banner').cycle({
		delay: 1000,
		speed: 2000
	}).height(263);
	
})