// Footer - IC Group Network show and hide effect
 $(document).ready(function() {
	$('div.showhide,h1').hide();
    $('#toggleh1').click( function() {
    $('div.showhide,h1').toggle("fast");});});