/*----------------------------------------
NCPTA Javascript
Author: Marcus Ellis
Last Updated: December 13, 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($){

	// 360 Events
	$('#events-widget').inc360events({
		url: 'http://m360.ncpt.org/calendar.aspx',
		items: '3',
		style: 'compact',
		linkText: 'View All Events'
	});

	// Updates RSS Feed
	$('#headlines-feed').incFeedWidget({
		url: 'http://www.apta.org/rssfeed.aspx?fid=10737418615',
		items: 8,
		callback: function(){
		    $('#headlines-feed ul').incNewsWidget({
		        time: 6,
		        charLimit: 75
		    });
		}
	});

	// Updates RSS Feed
	$('#legislation-feed').incFeedWidget({
		url: 'http://www.apta.org/rssfeed.aspx?fid=266',
		items: '4'
	});

	// Home Banner
	$('#home-top ul').incHeaderBanner({
		time: '9',
		shuffle: false
	});
	
	// Sponsor Box
	$('#sponsors ul').incSponsorBox();
	
    // Search Widget
    $('#cms-header-extras').append('<div id="search-widget"></div>');
    $('#search-widget').incSearchWidget({
    	formAction: 'http://www.ncpt.org/searchsite.cfm',
    	showLabel: true,
    	labelText: 'Search',
    	showButton: true,
    	buttonType: 'html',
    	buttonText: 'GO'
    });

	// Map
	$('#map area').mouseenter(function(){
			var a = $(this).attr('alt') || $(this).attr('id');
			$('#map-image').attr('src','/associations/7317/imgs/map-'+ a +'.png');
		}).mouseleave(function(){
			$('#map-image').attr('src','/global/css/imgs/trans1.gif');
		});	    

});

