/*----------------------------------------
VHMA Javascript
Author: Mitch Dunaway
Last Updated: May 25, 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($){
	
	// Clickable Logo
    $('body').addClickableLogo({
        name: 'Veterinary Hospital Managers Association',
        url: 'http://vhma.org'
    });
    
	// Social Icons
	$('#navtop1list').after($('#social'));
	
    // Search Widget
	$('#navtop1list').after('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
		formAction: 'http://vhma.org/searchsite.cfm',
		showLabel: false,
		buttonImage: '/associations/1346/imgs/btn-search.png',
		hoverImage: '/associations/1346/imgs/btn-search-hover.png'
    });
    $('#search-button').after($('#search-field'));
    
    // 360 Events Widget
    $('#events-widget').new360events({
        url: 'https://m360.vhma.org/calendar.aspx',
        //url: 'https://internal.affiniscape.com/calendar.aspx',       
        items: 3,
        style: 'compact'
    }); 
    
    // Login Widget
	$('#login-widget').incLoginWidget({
		showLabels: false,
		showForgotUser: false,
		buttonImage: '/associations/1346/imgs/btn-login.png',
   		hoverImage: '/associations/1346/imgs/btn-login-hover.png'
	});  
	
	// Marketing Banner
	$('#banner ul').incMarketingBanner({
		 showPager:true
	});
	
	// Announcements from HL
	$('#announcements').incFeedWidget({
		url: 'http://memberconnect.vhma.org/HigherLogic/RSS/RSSFeedPage.aspx?RSSContentKey=767a4236-163e-4c69-8a93-baa7d7762196&ShowPublicRSS=true&IsNoType=False&ShowAll=False&Type=MainHome&ItemKey=5de9f738-20cc-4abf-b792-859e0e364c9e&num=4&utf=y',
		items: 4,
		linkTarget: '_top'
	});
	
	// Member Activity from HL
	$('#memberActivity').incFeedWidget({
		url: 'http://memberconnect.vhma.org/VHMARSS/?UserKey=a1f5cf8e-10bb-4a94-8d9a-208a65b2ddff&Count=4',
		items: 4,
		linkTarget: '_top'
	});
	
});

