$(document).ready(function() {

	// make links with rel='external' open a new window
	$clxcommon.initExternal();

	// Add the "You're leaving a Clorox Site" warning to any DOM elements that have
	// a class of 'warning' or 'warningLink' 
	$clxcommon.initWarning();


	// attach a click handler to the link. We act on mousedown, not 'click'
	$('#clorox_concentrates_brochure').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','clorox-concentrates-brochure');
	});
	
		$('#greenworks_schools').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','greenworks-schools-pdf');
	});
	
		$('#greenworks_schools').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','greenworks-schools-pdf');
	});
	
		$('#greenworks_offices').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','greenworks-offices-pdf');
	});
	
		$('#greenworks_hotels').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','greenworks_hotels-pdf');
	});
	
		$('#greenworks_universities').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','greenworks-universities-pdf');
	});



	// Analytics for PDF for AFH Feedback form
	$('#athletic_trainer_brochure1').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','athletic-trainer-brochure-NATA-pdf');
	});

	$('#athletic_trainer_brochure2').mousedown(function() {
		$clxcommon.trackAnalyticsPageView('download','athletic-trainer-brochure-NATA-pdf');
	});
	
	
	// accordion effect for FAQ section
if ($('.tableExpand').length > 0) {				
    $('.tableExpand').accordion({
        header: "h3",
        collapsible: true,
        active: true,
        alwaysOpen: false,
        autoHeight: false
    });
}


});