$(document).ready(function(){
	$('#faqs h2').click(function() {
		s=s_gi(s_account);
		s.linkTrackVars = 'prop12';
		var clickedOn = $(this).html().toLowerCase();
		s.prop12 = clickedOn;
		s.tl(this, 'o', clickedOn);
	});
	
	if ($('.survivorImg').length > 0) {
		$('.survivorImg').children('a').click(function() {
			s=s_gi(s_account);
			s.linkTrackVars = 'prop14';
			s.prop14 = $(this).parent().children(':first').children(':first').attr('alt').toLowerCase();
			s.tl(this, 'o', 'video watch');
		});
	}
	
	if ($('.trackOmniture').length > 0) {
		$('.trackOmniture').click(function() {
			s=s_gi(s_account);
			s.linkTrackVars = 'prop14';
			s.prop14 = $(this).html().toLowerCase();
			s.tl(this, 'o', 'video watch');
		});
	}
	
	if($('#adminForms').length > 0) {
		$('#adminForms').children().click(function(){
			s=s_gi(s_account);
			s.linkTrackVars = 'prop15,events';
			s.linkTrackEvents = 'event7';
			s.prop15 = $(this).children().html().toLowerCase();
			s.events = 'event7';
			s.tl(this, 'o', 'form download');
		});
	}
});