/* --------------- F U N C T I O N S ----------------- */
/* animateIn() fade the elements in */
/* animateOut() fade the elements out */
/* animateLeftImage(margin-left (can be minus), speed (0 will use native speed)); */
/* animateLeftRight(margin-left (can be minus), speed (0 will use native speed)); */
/* animateMovement(percentage) */
/* animateOutMovement(percentage, link) */
/* fadeNav(val)  */
/* fadeSection(val) */
/* changeLeftImage(link)  */
/* changeRightImage(link)  */


jQuery(document).ready(function() {   	
		$("body").delegate("a:not(.hash)", "click", function(event){
			var title = $(this).attr("percent");
			var link = $(this).attr("href");
 		 	event.preventDefault();
 		 	animateOutMovement(40,link);
 		 	
		});
	});
