
	 
 $(document).ready(function(){
 hideBoxes();
 // toggles the slickbox on clicking the noted link
  $('a#contactus-toggle').click(function() {
	$('#contactus').toggle(400);
	if ($('img#imgRareUpdates').attr('src') == '../images/rareUpdatesOpen.gif')
		$('img#imgRareUpdates').attr('src','../images/rareUpdatesClosed.gif');	
	else	
		$('img#imgRareUpdates').attr('src','../images/rareUpdatesOpen.gif');
	
	return false;
  });
  
  
  
  

 // toggles the slickbox on clicking the noted link
  $('a#rarenews-toggle').click(function() {
  $('#rarenews').toggle(400);
	if ($('img#imgRareNews').attr('src') == '../images/rareNewsOpen.gif')
		$('img#imgRareNews').attr('src','../images/rareNewsClosed.gif');	
	else	
		$('img#imgRareNews').attr('src','../images/rareNewsOpen.gif');
		
		
		
	return false;
  });
  
  
  
  

 // toggles the slickbox on clicking the noted link
  $('a#rareevents-toggle').click(function() {
	$('#rareevents').toggle(400);
	if ($('img#imgRareEvents').attr('src') == '../images/rareEventsOpen.gif')
		$('img#imgRareEvents').attr('src','../images/rareEventsClosed.gif');	
	else	
		$('img#imgRareEvents').attr('src','../images/rareEventsOpen.gif');
		
		
	return false;
  });
 
 });
  
  function hideBoxes(){  
	  $('#rarenews').hide();
	  $('#rareevents').hide();  
	  $('#contactus').hide();
  }
  


