
$(document).ready(function(){
	$("#top #AMButton").click(function () {
		if ($("#top").offset().top == 0){
	 		$("#top").stop().animate({ top: "-100px"}, 300, "easeInCirc" ); 
		} else {
	 		$("#top").stop().animate({ top: "0px"}, 300, "easeOutCirc" ); 
		}
	});
	
	$("#top #AMLogin").click(function () {
		$("#AMForm").submit();
	});
	
	// Make the search box clear itself when clicked
    swapValues = [];
    $(".swapValue").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]);
            }
        });
    });
});


