// JavaScript Document
$(document).ready(function() {

	$("#topnav a.mm").hover(function() {
		$(this).stop().animate({
			marginRight: "-10"
		}, 250);
	} , function() { 
		$(this).stop().animate({
			marginRight: "0"  
		}, 250);
	});

});


