// JavaScript Document
// ©2011 All My Sons Moving & Storage
// jonc@allmysons.com


// QUOTE DROPDOWN
$(document).ready(function() {
var easing = 'swing';

    $('#quotesdroptrig').toggle(
        function() {
            $('#quotesholderdrop').animate({top: '0px'}, 400, easing);
        },
        function() {
            $('#quotesholderdrop').animate({top: '-180px'}, 200, easing);
        });

	
// CARD FLIP
	$("#flipfront").click(function(event){
	$('#flipfront').stop().animate({width: '0px', left:'102px'}, 200, easing);
	$('#flipback').stop().delay(200).animate({width: '204px', left:'0'}, 200, easing);
	});
	$("#flipback").click(function(event){
    $('#flipback').stop().animate({width: '0px', left:'102px'}, 200, easing);
	$('#flipfront').stop().delay(200).animate({width: '204px', left:'0'}, 200, easing);
	});
	
});

// SHARE BOX
$(document).ready(function() {
						   var easing = 'swing';
    $('#share').click(
        function() {
            $('#sharebox').animate({height: '40px'}, 200, easing);
        }
    );

    $('.close2').toggle(
        function() {
            $('#sharebox').animate({height: '0'}, 200, easing);
        },
        function() {
            $('#sharebox').animate({height: '0'}, 200, easing);
        }
    );
});

// GO BUTTON FLASH
$(document).ready(function(){
    var timer;
    jQuery(function($) {
            timer = setTimeout(Cloud, 0);
    });

    function Cloud() {
            $(".quotegobutton").css({opacity: 0}).
                    animate({opacity: 1}, 700, "linear").
                    animate({opacity: 0}, 700, "linear", function() {
                            timer = setTimeout(Cloud, 0);
                    });
    }
});

