$(function(){
	//#for js enabled visitors:
	//#we will hide full info and reveal it on click
	//#we will hide download widget
  $('#moreinfo').hide();
  $('#reveal').show();
  //#ie cannot handle animation well here
  if(/MSIE/.test(navigator.userAgent))
  {
	  if(/MSIE [6]/.test(navigator.userAgent))
	  {
		$('#reveal').click(function(){
			$('#moreinfo').toggle();
		}); 
	  }
	  else
	  {
		 $('#reveal').toggle(
			function(){$('#moreinfo').fadeIn('slow');}, 
			function(){$('#moreinfo').fadeOut('normal');
	  	});  
	  }
  }
  else
  {
	  $('#reveal').toggle(
			function(){$('#moreinfo').show('slow');}, 
			function(){$('#moreinfo').hide('fast');
	  });
  }
}); 
