/* Author: 

*/

$(document).ready(function(){
            $("#aboutButton a").click(function(){
                var targetOffset = $('#aboutLeft').offset().top;
                $('html,body').animate({scrollTop: targetOffset}, 2000);
            });
        });

$(document).ready(function(){
            $("#hiremeButton a").click(function(){
                var targetOffset = $('#contactText').offset().top;
                $('html,body').animate({scrollTop: targetOffset}, 2000);
            });
        });

$(document).ready(function() {
			$("a#example6").fancybox({
				'titlePosition'		: 'outside',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.9
			});
		});

























