/*******

	***	jQuery "flash like" menu plugin by Cedric Dugas   ***
	*** Http://www.position-absolute.com ***
	
	Licenced under the MIT LICENCE
	
*****/
$(document).ready(function(){$("a.menuFlash").menuZoomer({speed:400,fontColor:"#C33E3F",fontSize:"130%",lineHeight:"39px",easing:"easeOutExpo"})});jQuery.fn.menuZoomer=function(a){a=jQuery.extend({speed:400,fontColor:"#C33E3F",fontSize:"105%",lineHeight:"39px",easing:"easeOutExpo"},a);return this.each(function(){var c=$(this).css("lineHeight");var b=$(this).css("color");$(this).animate({fontSize:"105%",color:b,lineHeight:c},{duration:a.speed,easing:"easeOutExpo"});$(this).click(function(){$(".openItem").animate({fontSize:"105%",color:b,lineHeight:c},{duration:a.speed,easing:"easeOutExpo"});$(".openItem").removeClass("openItem");$(this).addClass("openItem")});$(this).hover(function(){$(this).not(":animated").animate({fontSize:a.fontSize,color:a.fontColor,lineHeight:a.lineHeight},{duration:a.speed,easing:a.easing});return false},function(){$(this).not(".openItem").animate({fontSize:"105%",color:b,lineHeight:c},{duration:a.speed,easing:"easeOutExpo"})})})};
