jQuery(function($){

    //header tabs
    
    $("#img_icon_1").hover(function () {
        $("#img_replace_holder img").attr('src',this.src);
    });
    $("#img_icon_2").hover(function () {
        $("#img_replace_holder img").attr('src',this.src);
    });
    $("#img_icon_3").hover(function () {
        $("#img_replace_holder img").attr('src',this.src);
    });
    
    //lpo
    $("#refq_close img").click(function () {
        $("#refq").fadeOut();
        $("#refq_close").fadeOut();
    });


});

