// JavaScript Document
/* not using "$" variable -- is being used by Lightbox on this page */

jQuery(document).ready(function(){
	var jq = jQuery;
       swapValues = [];
    jq(".swap_value").each(function(i){
        swapValues[i] = jq(this).val();
        jq(this).focus(function(){
            if (jq(this).val() == swapValues[i]) {
                jq(this).val("");
            }
        }).blur(function(){
            if (jq.trim(jq(this).val()) == "") {
                jq(this).val(swapValues[i]);
            }
        });
    });
});
 