﻿//*************************************************************************************
// File     : hfro_functions.js
// Requires : jquery.js (version 1.3.2+), jquery is set to no-conflict
// Author   : Kyle Weems (ksw)
// Origin   : mindfly.com
// Created  : May 05, 2010
// Modified : May 05, 2010
//*************************************************************************************

jQuery(document).ready(function() { 
   bindVideoButtons();
});

function bindVideoButtons() {
    jQuery('.ulPopupButtons .video a').bind('click', function() {
        jQuery(this).parents('.ulPopupButtons').siblings('.videoPopup').slideDown();
        return false;
    });
    jQuery('.popupDetailsClose').bind('click', function() {
        jQuery(this).parents('.videoPopup').slideUp();
    });
}
