﻿jQuery(document).ready(function() { 
jQuery("#menu.menuimg a").hover(function () { 
	jQuery(this).children("img").animate({'margin-top':'-20px'},600, 'easeOutBack'); return false }); // lift menu icons
jQuery("#menu a").mouseleave(function () { 
	jQuery(this).children("img").animate({'margin-top':'0'},600, 'easeInBack'); return false });
	
}); //close doc ready 

