// JavaScript Document

$(document).ready(function(){
	/* This code is executed after the DOM has been completely loaded */

	$('#nav_contact a, #clients_nav a, #request a, #about_nav a, .button_top a, .mini_menu a').click(function(e){

		// If a link has been clicked, scroll the page to the link's hash target:

		$.scrollTo( this.hash || 0, 800);
		e.preventDefault();
	});

});
