function goTo(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}

$(document).ready(function() { 
	$("#doMoreFoot").click( function(){		
		$("#foot_golf").slideToggle();
		goTo('foot_golf');
	});
	$("#doMoreFootDiv").mouseover( function(){
		$("#doMoreFoot").attr('src', 'img/voirgf2.jpg');
	});
	$("#doMoreFootDiv").mouseout( function(){
		$("#doMoreFoot").attr('src', 'img/voirgf.jpg');
	});
	
	
	
	
	$("#see_moar").click( function(){
		goTo('hrefSeeM');
	});
	
	$("#see_moar2").click( function(){
		goTo('actiion');
	});
	
	$('a[rel^=internal-]').each(function(){  
		var href = $(this).attr('href');  
        $(this).click(function() {  
	        var extLink = href.replace(/^https?\:\/\//i, '');  
		    pageTracker._trackEvent($(this).attr('rel'), 'Click', extLink);  
	    });  
	});	
});
