jQuery(document).ready(function($)
		{
                        
			$('.contactLink').toggle(function(){
				$('.wpcf7').show('slow');
                        }, function(){
                            $('.wpcf7').hide('slow');
                        }
			)
		}
		);

