 $(function()
 {
			 $('a#linksin').click(function(){
				$('div#links1').show(2000);
				});

			 $('a#linksout').click(function(){
				$('div#links1').hide(2000);
				})				

			 $('a#tagsout').click(function(){
				$('div#tags1').hide(2000);
				})

			 $('a#norfbioshowen').click(function(){
				$('#norfbiopl').hide();
				$('#norfbioen').show(2000);				
				$('#showbioen').hide();							
				$('#showbiopl').show(2000);													
				})
				
			 $('a#norfbioshowpl').click(function(){
				$('#norfbioen').hide();
				$('#norfbiopl').show(2000);				
				$('#showbiopl').hide();							
				$('#showbioen').show(2000);													
				})					
				
			 $('a#contact').hover(
			 	function()
			 	{
				$('#contact1').css('background-color','#339900');
				$('#contact1').css('color','#fff');				
				$('#contact2').css('background-color','#339900');
				$('#contact2').css('color','#fff');				
				}, 
				function()
				{
				$('#contact1').css('background-color','#ccc');
				$('#contact1').css('color','#666');				
				$('#contact2').css('background-color','#ccc');
				$('#contact2').css('color','#666');				
				}	
			 );
 });
