$(document).ready(function(){
 
    $("li:last").css({border: 'none'});
	
	 $('.table-two a').css({color: '#333333'});

	$('#Large-box-home a').prepend('<img src="/images/Large-box-home-Arrow.gif" border="none" align="top" alt="arrow" />');
	
	$('.Small-box-content a').prepend('<img src="/images/small-box-home-Arrow-Gray.gif" border="none" align="bottom" alt="arrow" />');
	
	$('.linkappend').append('<a href="/Project-news-and-resources/Project-news-and-resources.html" target="_self" class="Right-more-link" style=" text-decoration:none"><img src="/images/small-Right-Green.gif" border="none" align="bottom" alt="arrow" />More</a>');
	
	equalHeight($(".col1"));
	
	
	//custom animation fade and toggle
	
	divs = $('#Hide-One, #Hide-Two, #Hide-Three, #Hide-Four, #Hide-Five, #Hide-Six, #Hide-Seven, #Hide-Eight');

// hides when ready DOM is ready
  $(divs).hide();
  
 // toggles the Hide-One
  $('a#toggle-One').click(function() {						   
	 $(divs).hide();					   
    $('#Hide-One').ClearTypeFadeIn(500);
    return false;
  });
  
   $('a#toggle-Two').click(function() {
	 $(divs).hide();
    $('#Hide-Two').ClearTypeFadeIn(500);
    return false;
  });
   
    $('a#toggle-Three').click(function() {
	 $(divs).hide();
    $('#Hide-Three').ClearTypeFadeIn(500);
    return false;
  });
	
	 $('a#toggle-Four').click(function() {
	 $(divs).hide();
    $('#Hide-Four').ClearTypeFadeIn(500);
    return false;
  });
	 
	  $('a#toggle-Five').click(function() {
	 $(divs).hide();
    $('#Hide-Five').ClearTypeFadeIn(500);
    return false;
  });
	  
	   $('a#toggle-Six').click(function() {
	 $(divs).hide();
    $('#Hide-Six').ClearTypeFadeIn(500);
    return false;
  });
	   
	    $('a#toggle-Seven').click(function() {
	 $(divs).hide();
    $('#Hide-Seven').ClearTypeFadeIn(500);
    return false;
  });
		
		$('a#toggle-Eight').click(function() {
	 $(divs).hide();
    $('#Hide-Eight').ClearTypeFadeIn(500);
    return false;
  });
		
   
   	$('a.close').click(function() {
	$(divs).hide();		
	//$(divs).ClearTypeFadeOut({ speed: 500, callback: function() { $(divs).hide(); } })
	});

  });
	


  
