// view.js - Contains jQuery code for profile viewing
$(function() {

	// Hide contact link on click, then slide the form down
	$('a.contact_link').click(function() {
        if( ! $.browser.msie)
        {
            $('#contact_member').slideToggle();
        }
        else
        {
        	$('#contact_member').toggle();
        }

        return false;

	});

});

