		function fhidedrop() {
			$('.sub1').fadeOut(300);
			$('.sub2').fadeOut(300);
			$('.sub3').fadeOut(300);
		}
		
		$(document).ready(function() {
			$('.asub0').mouseenter(function() {
				$('.sub0').fadeIn(300);
				$('.sub1').fadeOut(300);
				$('.sub2').fadeOut(300);
				$('.sub3').fadeOut(300);
			});
			
			$('.asub1').mouseenter(function() {
				$('.sub0').fadeOut(300);
				$('.sub1').fadeIn(300);
				$('.sub2').fadeOut(300);
				$('.sub3').fadeOut(300);
			});
			
			$('.asub2').mouseenter(function() {
				$('.sub0').fadeOut(300);
				$('.sub2').fadeIn(300);
				$('.sub1').fadeOut(300);
				$('.sub3').fadeOut(300);
			});
			
			$('.asub3').mouseenter(function() {
				$('.sub0').fadeOut(300);
				$('.sub3').fadeIn(300);
				$('.sub1').fadeOut(300);
				$('.sub2').fadeOut(300);
			});
			
			$('.sub3').mouseleave(function() {
				$('.sub3').fadeOut(300);
			});
			$('.sub2').mouseleave(function() {
				$('.sub2').fadeOut(300);
			});
			$('.sub1').mouseleave(function() {
				$('.sub1').fadeOut(300);
			});
			$('.sub0').mouseleave(function() {
				$('.sub0').fadeOut(300);
			});			
			$('.nosub').hover(function() {
			
				$('.sub1').fadeOut(300);
				$('.sub2').fadeOut(300);
				$('.sub3').fadeOut(300);
			
			});
			
			$('.newsb1').mouseenter(function() {
				$('.selecting').animate({"margin-top" : "35px"},500);
				$('.scroller').animate({"margin-top" : "0px"},500);
			});
			$('.newsb2').mouseenter(function() {
				$('.selecting').animate({"margin-top" : "135px"},500);
				$('.scroller').animate({"margin-top" : "-305px"},500);
			});
			$('.newsb3').mouseenter(function() {
				$('.selecting').animate({"margin-top" : "235px"},500);
				$('.scroller').animate({"margin-top" : "-610px"},500);
			});
					
		});
