$(document).ready(function() 
{
	$('#myform1').ajaxForm({ 
			target: '#responsediv',
			beforeSubmit: showSpinner
	}); 

	/////////////////////////////////////////////////////////
	
	$('#myform2').ajaxForm({ 
			target: '#responsediv2',
			beforeSubmit: showSpinner2
	}); 
});

function showSpinner() { 
	var $out = $('#responsediv');
	$out.html("<p class=\"center\"><img src=\"img/spinner.gif\" alt=\"Spinner\" /></p>");
	return true; 
} 

function showSpinner2() { 
	var $out = $('#responsediv2');
	$out.html("<p class=\"center\"><img src=\"../img/spinner.gif\" alt=\"Spinner\" /></p>");
	return true; 
} 

	/////////////////////////////////////////////////////////
	
$(document).ready(function() 
{
	swapValues = [];
    $(".swap_value").each(function(i){
        swapValues[i] = $(this).val();
        $(this).focus(function(){
            if ($(this).val() == swapValues[i]) {
                $(this).val("");
            }
        }).blur(function(){
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValues[i]);
            }
        });
    });

	/////////////////////////////////////////////////////////

	$("#rhs dl dt").toggle(
		function () {
			$(this).next().slideDown();
			$(this).addClass("on");
		},
		function () {
			$(this).next().slideUp();
			$(this).removeClass("on");
		}
	);

	/////////////////////////////////////////////////////////

	
});