$(document).ready(function(){
$("a.menuZoom").menuZoomer({
})
});
jQuery.fn.menuZoomer=function(settings){
settings=jQuery.extend({
speed:400,
fontColor:"#93D43B",
fontSize:"126%",
lineHeight:"45px",
easing:"easeOutExpo"
},settings);
return this.each(function(){
var initlineHeight=$(this).css("lineHeight")
var initcolor=$(this).css("color")
$(this).animate({
fontSize:"100%",
color:initcolor,
lineHeight:initlineHeight
},{duration:settings.speed,easing:"easeOutExpo"})
$(this).click(function(){
$(".openItem").animate({
fontSize:"100%",
color:initcolor,
lineHeight:initlineHeight
},{duration:settings.speed,easing:"easeOutExpo"})
$(".openItem").removeClass("openItem")
$(this).addClass("openItem")
})
$(this).hover(function(){
$(this).not(":animated").animate({
fontSize:settings.fontSize,
color:settings.fontColor,
lineHeight:settings.lineHeight
},{duration:settings.speed,easing:settings.easing})
return false;
},
function(){
$(this).not(".openItem").animate({
fontSize:"100%",
color:initcolor,
lineHeight:initlineHeight
},{duration:settings.speed,easing:"easeOutExpo"})
});
})
}

