/*----------------------------------------
PSI Javascript
Author: Marcus Ellis
Last Updated: January 6, 2012
(c) 2012 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($){
	
	// Marketing Banner
	$('#banner ul').incMarketingBanner({
		time: 12,
		showPager: true,
		activeClass: 'active'
	});
	
	// Newsletter Sign-up Widget
	$('#newsletter-widget').incNewsletterWidget({
		sendto: 'erin@productstewardship.us',
		showName: false,
		showLabels: false,
		placeholder: { email: 'Email Address' },
		buttonType: 'image',
		buttonImage: '/associations/6596/imgs/btn-submit.png',
		hoverImage: '/associations/6596/imgs/btn-submit-hover.png'
	});

	// Search Widget
	$('#cms-header-extras').append('<div id="search-widget"></div>');
	$('#search-widget').incSearchWidget({
		formAction: 'http://www.productstewardship.us/searchsite.cfm',
		placeholder: 'Search…',
		showLabel: false,
		buttonImage: '/associations/6596/imgs/btn-search.png',
		hoverImage: '/associations/6596/imgs/btn-search-hover.png'
	});
	
	// Add Tooltips to Social Icons
	$('#navtop1link_2, #navtop1link_3, #navtop1link_4, #navtop1link_5').each(function(index) {
		$(this).attr('title',$(this).text());
	});
	
	// Replace HRs
	$('.ie hr').each(function(){
		$(this).after('<div class="hr"></div>').remove();
	});
	
	// Sliding Flyouts
	$('nav > ul').navFlyouts({
		speedDown: 200,
		speedUp: 400
	});
    
});

