jQuery(document).ready(function($){						
    $("#content").append('<div id="google_voice"><object type="application/x-shockwave-flash" data="https://clients4.google.com/voice/embed/webCallButton" width="230" height="85"><param name="movie" value="https://clients4.google.com/voice/embed/webCallButton" /><param name="wmode" value="transparent" /><param name="FlashVars" value="id=2ded758c9039f47c3cab8169e860c80e13c42572&style=0" /></object></div>');
    $("a:not([href^='http://"+window.location.host+"'])").attr('target','_blank');
		
    $('#footer_wrap').fadeTo('fast', 0.55);
	
    $('#footer_wrap').hover(function(){
        $(this).fadeTo('fast', 1.0);
    }, function(){
        $(this).fadeTo('fast', 0.55);
    });
	
    $('#google_voice').hide();
    $('a.google_voice').toggle(function(){
        $('#google_voice').show();
    }, function(){
        $('#google_voice').hide();
    });

    $("ul.children li").mouseenter(function(){
        $(this).animate({
            paddingLeft: '10px'
        }, 500, function(){ //complete
            });
    }).mouseleave(function(){
        $(this).animate({
            paddingLeft: '0'
        }, 500, function(){ //complete
            });
    });
	

});