﻿//  do thermometer actions

$(function () {


    /*place jQuery actions here*/
    $('#flashcontent').hide('');

    var addOddClassToFRPList = $('#userFundraisingPages .clearfix:odd');

    $(addOddClassToFRPList).addClass('odd');

    // text link trigger images open

    $('#photoText').click(function () {
        $('#photos .examples a:first').trigger('click');
        return false;
    });

    // text link trigger videos open

    $('#videoText').click(function () {
        //  $('#videos .examples').trigger('click');
        $('#gallery').click();
        return false;
    });

    $('#playButton').click(function () {
        $('#gallery').click(); 
        return false;
    });

});
