/*----------------------------------------
WEPAN Javascript
Author: Marcus Ellis
Last Updated: November 30, 2011
(c) 2011 Affiniscape, Inc.
All Rights Reserved. This JavaScript file must not be reproduced without the express written permission of Affiniscape, Inc.
For questions regarding licensing or setup please contact Affiniscape, projects @ affiniscape dot com
----------------------------------------*/


var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Portal
	$('div.portal').each(function() {
	  $('#maincontenttable').addClass('no-navleft');
	});
	
	// Footer
	$('body').append('<div id="assnfooter"></div>');
	$('#assnfooter').append($('#footertablecell p'));
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Women in Engineering ProActive Network',
        url: 'http://www.wepan.org/'
    });

});
	

