/**
 * Filter for good specific code
 */
$(document).ready(function() {
	//Attach click handlers for the twitter/facebook stuff on FFG homepage
	var fb = $('#facebook-social-display');
	var tw = $('#twitter-social-display');
	tw.hide();
	$('#display-facebook').click(function() {
		fb.show();
		tw.hide();
	});
	$('#display-twitter').click(function() {
		fb.hide();
		tw.show();
	});
	
	//Slider for FFG homepage
	$('#topGroup li').hide();
	$('#topGroup').flexslider({
		animation: 'fade',
		controlsContainer: '.slides',
		pausePlay: true,
		directionNav: false,
		controlsContainer: '.controls'
	});
	
	
	//Custom flow for the take-pledge overlay
    $('#pledgeBanner, #btnTakePledge, #bottom-nav-pledge-link').each(function() {
    	var href = $(this).attr('href');
    	if (href === undefined || href == '#') {
    		$(this).click(function() {
    	    	$('#createAccount').unbind('click');
    	    	$clxcommon.createLink('#createAccount', '/user/register/?from=ffg');
    	    	$('#loginForm').attr('action', '/login/process/?redirect=%2Fuser%2Ftake-pledge%2F');
    	    	$('#copy-line-1').html('Register to Take the Pledge');
    	    	$('#copy-line-2').html('Join the movement to reduce bottled water waste.');
    	    	$('#copy-line-3').html('Take the Pledge to save 300 bottles now');
    	    	$('#copy-line-4').html('Receive Brita FilterForGood  news and special offers');
    	    	$('#copy-line-5').html('Set up Brita filter change  reminders');
    	    	$('#copy-line-6').hide();
    	    	$('#login-modal-window').data('overlay').load();
    		});
    	}
    });
    
    //Regular overlay flow
    $('#login-modal-window').click(function() {
    	$('#createAccount').unbind('click');
    	$clxcommon.createLink('#createAccount', '/user/register/');
    	$('#loginForm').attr('action', '/login/process/');
    	$('#copy-line-1').html('Register for My Brita');
    	$('#copy-line-2').html('Join now and enjoy the benefits of membership.');
    	$('#copy-line-3').html('Set up filter change reminders');
    	$('#copy-line-4').html('Take the Pledge to reduce bottled water waste');
    	$('#copy-line-5').html('Receive news and special offers');
    	$('#copy-line-6').show();
    });
});

