$(document).ready(function() {
toggleLogin();
//team 1
$('#team1-info, #team2-info, #team3-info, #team4-info, #team5-info').hide();
    $('#team1').click(function() {
    $('#team1-info').slideDown('fast');
        return true;
    });

    $('#team1').mouseout(function() {
        $('#team1-info').slideUp('fast');
            return true;
    });

//team 2
    $('#team2').click(function() {
    $('#team2-info').slideDown('fast');
        return true;
    });

    $('#team2').mouseout(function() {
        $('#team2-info').slideUp('fast');
            return true;
    });

//team 3
    $('#team3').click(function() {
    $('#team3-info').slideDown('fast');
        return true;
    });

    $('#team3').mouseout(function() {
        $('#team3-info').slideUp('fast');
            return true;
    });

//team 4
    $('#team4').click(function() {
    $('#team4-info').slideDown('fast');
        return true;
    });

    $('#team4').mouseout(function() {
        $('#team4-info').slideUp('fast');
            return true;
    });

//team 5
    $('#team5').click(function() {
    $('#team5-info').slideDown('fast');
        return true;
    });

    $('#team5').mouseout(function() {
        $('#team5-info').slideUp('fast');
            return true;
    });

//team 5
    $('#tellfriend').click(function() {
    $('#tellfriend-inside').slideDown('fast');
        return false;
    });

    $('#tellfriend').click(function() {
        $('#tellfriend-inside').slideUp('fast');
            return true;
    });

//tella friend
function toggleLogin()
{
	$('#header .top-menu a.loggedOut').click(
		function(){
			$('#flyoutLogin').toggle();
			return false;
		}
	);
}
});

