/*----------------------------------------
WSVMA Javascript
Author: Marcus Ellis
Last Updated: September 6, 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($){
	
    // Mktg Banner
	$('#mktg-banner ul').incMarketingBanner({
		showButtons: true,
		buttonText: {
			prevText: 'back',
			nextText: 'next'
		},
		showPauseBtn: true
	});

	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Washington State Veterinary Medical Association',
        url: 'http://www.wsvma.org'
    });

});

function incLogin() {
	var str = '<iframe id="iflogin" src="/cafe.cfm?act=member.showlogin&spanid=loginform" frameborder="0" width="0" height="0"></iframe>';
		str += '<span id="loginform">&nbsp;</span>';
	document.write(str);
}

