 $(document).ready(function() {
/*
//social media flyout
	(function($){

             open_flyout = function() {

                        open = true;
				$('#sm_flyout').html('Close').removeClass('open').addClass('close');
                                flyout_position = 0;

                                flyout.animate({
				'bottom' : flyout_position
			},{duration: '500',easing: 'easeOutExpo'});

            };

               close_flyout = function() {
                    if (open==true)
                        {
                        open = false;
				$('#sm_flyout').html('Open').removeClass('close').addClass('open');
                                flyout_position = -flyout_height + 37;

                                flyout.animate({
				'bottom' : flyout_position
			},{duration: '500',easing: 'easeOutExpo'});
                        }


            };

		var open = false;
		var flyout = $('#flyout_container');
		var flyout_height = flyout.height();
                var flyout_position;

		var sm_btn = $('#sm_flyout'); // the button clicked to fly out the social media menu

		sm_btn.click(function(event){
			if(open == false){
				open_flyout();
			}
			else{
				close_flyout();
			}
			event.preventDefault();


		});



	})(jQuery);
*/

              // sm icon fade
              $('#icons a').mouseover(function(){
                 $(this).children('img').stop().animate({
                    'opacity':'0'
                 });
              });

              $('#icons a').mouseout(function(){
                  $(this).children('img').stop().animate({
                    'opacity':'1.0'
                 });
              });

 });
