/***************************************************************************
 *  DESC:   File that contains all JavaScript for the Firewise eStore
 *  DATE:   12/16/2008
 *  BY:     Ed Orsini | Consolidated Marketing Services 
 **************************************************************************/ 

$(function(){
    // hides feedback from on the checkout/submitted.php 
    $("#feedback").hide();
    
    // validate form on the checkout/checkoutpresent.php
    //$("#checkoutForm").validate();
    
    // opens a new window - used throughout the site.
    //$('a.new-window').click(function(){
    //    window.open(this.href);
    //    return false;
    //});
    
    // displays the feedback form after the user clicks link
    $("#showFeedbackShow").click(function(){
        $("#feedback").show();
    });    
    // hides the feedback form after the user clicks link
    $("#showFeedbackHide").click(function(){
        $("#feedback").hide();
    });   
     
});


