jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(a,e,f,g,h){return jQuery.easing[jQuery.easing.def](a,e,f,g,h)},easeInQuad:function(a,e,f,g,h){return g*(e/=h)*e+f},easeOutQuad:function(a,e,f,g,h){return -g*(e/=h)*(e-2)+f},easeInOutQuad:function(a,e,f,g,h){if((e/=h/2)<1){return g/2*e*e+f}return -g/2*((--e)*(e-2)-1)+f},easeInCubic:function(a,e,f,g,h){return g*(e/=h)*e*e+f},easeOutCubic:function(a,e,f,g,h){return g*((e=e/h-1)*e*e+1)+f},easeInOutCubic:function(a,e,f,g,h){if((e/=h/2)<1){return g/2*e*e*e+f}return g/2*((e-=2)*e*e+2)+f},easeInQuart:function(a,e,f,g,h){return g*(e/=h)*e*e*e+f},easeOutQuart:function(a,e,f,g,h){return -g*((e=e/h-1)*e*e*e-1)+f},easeInOutQuart:function(a,e,f,g,h){if((e/=h/2)<1){return g/2*e*e*e*e+f}return -g/2*((e-=2)*e*e*e-2)+f},easeInQuint:function(a,e,f,g,h){return g*(e/=h)*e*e*e*e+f},easeOutQuint:function(a,e,f,g,h){return g*((e=e/h-1)*e*e*e*e+1)+f},easeInOutQuint:function(a,e,f,g,h){if((e/=h/2)<1){return g/2*e*e*e*e*e+f}return g/2*((e-=2)*e*e*e*e+2)+f},easeInSine:function(a,e,f,g,h){return -g*Math.cos(e/h*(Math.PI/2))+g+f},easeOutSine:function(a,e,f,g,h){return g*Math.sin(e/h*(Math.PI/2))+f},easeInOutSine:function(a,e,f,g,h){return -g/2*(Math.cos(Math.PI*e/h)-1)+f},easeInExpo:function(a,e,f,g,h){return(e==0)?f:g*Math.pow(2,10*(e/h-1))+f},easeOutExpo:function(a,e,f,g,h){return(e==h)?f+g:g*(-Math.pow(2,-10*e/h)+1)+f},easeInOutExpo:function(a,e,f,g,h){if(e==0){return f}if(e==h){return f+g}if((e/=h/2)<1){return g/2*Math.pow(2,10*(e-1))+f}return g/2*(-Math.pow(2,-10*--e)+2)+f},easeInCirc:function(a,e,f,g,h){return -g*(Math.sqrt(1-(e/=h)*e)-1)+f},easeOutCirc:function(a,e,f,g,h){return g*Math.sqrt(1-(e=e/h-1)*e)+f},easeInOutCirc:function(a,e,f,g,h){if((e/=h/2)<1){return -g/2*(Math.sqrt(1-e*e)-1)+f}return g/2*(Math.sqrt(1-(e-=2)*e)+1)+f},easeInElastic:function(e,l,g,h,i){var k=1.70158;var j=0;var f=h;if(l==0){return g}if((l/=i)==1){return g+h}if(!j){j=i*0.3}if(f<Math.abs(h)){f=h;var k=j/4}else{var k=j/(2*Math.PI)*Math.asin(h/f)}return -(f*Math.pow(2,10*(l-=1))*Math.sin((l*i-k)*(2*Math.PI)/j))+g},easeOutElastic:function(e,l,g,h,i){var k=1.70158;var j=0;var f=h;if(l==0){return g}if((l/=i)==1){return g+h}if(!j){j=i*0.3}if(f<Math.abs(h)){f=h;var k=j/4}else{var k=j/(2*Math.PI)*Math.asin(h/f)}return f*Math.pow(2,-10*l)*Math.sin((l*i-k)*(2*Math.PI)/j)+h+g},easeInOutElastic:function(e,l,g,h,i){var k=1.70158;var j=0;var f=h;if(l==0){return g}if((l/=i/2)==2){return g+h}if(!j){j=i*(0.3*1.5)}if(f<Math.abs(h)){f=h;var k=j/4}else{var k=j/(2*Math.PI)*Math.asin(h/f)}if(l<1){return -0.5*(f*Math.pow(2,10*(l-=1))*Math.sin((l*i-k)*(2*Math.PI)/j))+g}return f*Math.pow(2,-10*(l-=1))*Math.sin((l*i-k)*(2*Math.PI)/j)*0.5+h+g},easeInBack:function(a,e,f,g,h,i){if(i==undefined){i=1.70158}return g*(e/=h)*e*((i+1)*e-i)+f},easeOutBack:function(a,e,f,g,h,i){if(i==undefined){i=1.70158}return g*((e=e/h-1)*e*((i+1)*e+i)+1)+f},easeInOutBack:function(a,e,f,g,h,i){if(i==undefined){i=1.70158}if((e/=h/2)<1){return g/2*(e*e*(((i*=(1.525))+1)*e-i))+f}return g/2*((e-=2)*e*(((i*=(1.525))+1)*e+i)+2)+f},easeInBounce:function(a,e,f,g,h){return g-jQuery.easing.easeOutBounce(a,h-e,0,g,h)+f},easeOutBounce:function(a,e,f,g,h){if((e/=h)<(1/2.75)){return g*(7.5625*e*e)+f}else{if(e<(2/2.75)){return g*(7.5625*(e-=(1.5/2.75))*e+0.75)+f}else{if(e<(2.5/2.75)){return g*(7.5625*(e-=(2.25/2.75))*e+0.9375)+f}else{return g*(7.5625*(e-=(2.625/2.75))*e+0.984375)+f}}}},easeInOutBounce:function(a,e,f,g,h){if(e<h/2){return jQuery.easing.easeInBounce(a,e*2,0,g,h)*0.5+f}return jQuery.easing.easeOutBounce(a,e*2-h,0,g,h)*0.5+g*0.5+f}});if(!General){var General={}}General.subscript={init:function(){this.prepareSearchField();this.prepareCalendar();this.scrollToHash()},preparePng:function(){if(typeof(ddpngfix)!=="undefined"){$("img[src$=.png]:not(.opaque)").each(function(){ddpngfix.fixPng(this)})}},prepareFlash:function(){},prepareSearchField:function(){$("#search input:text").keypress(function(a){if(a.keyCode==13){var b=encodeURIComponent($.trim($(this).val().toLowerCase().replace(/[^a-z0-9åäö\s]/gi,"")));if(b.length>0){document.location.href="/sv/sok/q/"+b}else{document.location.href="#"}if(!a){var a=window.event}a.cancelBubble=true;if(a.stopPropagation){a.stopPropagation()}return false}});$("#search input:text").data("watermark",true);$("#search input:text").focus(function(){if($(this).data("watermark")){$(this).val("").removeClass("watermark");$(this).data("watermark",null)}}).blur(function(){if($.trim($(this).val()).length==0){$(this).val("Sök på FHV-delegationen").addClass("watermark");$(this).data("watermark",true)}})},prepareCalendar:function(){$(".calendar-container .pagination").live("click",function(){if($(".calendar-content:animated").length>0){return false}var a=$(this).attr("href").split("/");var c=a[a.length-2]+"-"+a[a.length-1]+"-01";var b=$(this).hasClass("pagination-prev")?"right":"left";$.ajax({type:"GET",cache:false,url:"/Bazment/fhv/CalendarOutput.aspx?d="+c,success:function(f){var d=$(".calendar-container .calendar-content");var e=$(".calendar-content",f);if(b=="left"){$(".calendar-container").append(e.css({position:"relative",top:"-234px",right:"-289px"}));d.animate({left:"-289px"},700,"easeInOutExpo");e.animate({right:"0"},700,"easeInOutExpo",function(){$(".calendar-container").replaceWith($(".calendar-container",f))})}else{$(".calendar-container").append(e.css({position:"relative",top:"-234px",left:"-289px"}));d.animate({right:"-289px"},700,"easeInOutExpo");e.animate({left:"0"},700,"easeInOutExpo",function(){$(".calendar-container").replaceWith($(".calendar-container",f))})}}});return false});$(".event a").live("click",function(){if(location.href.replace(/#.*$/g,"").indexOf($(this).attr("href").replace(/#.*$/g,""))!=-1){General.tools.smoothScrollTo($("a[name="+$(this).text()+"]").offset().top);return false}})},scrollToHash:function(){if(location.hash){var a=location.hash.substr(1);location.hash="";General.tools.smoothScrollTo($("a[name="+a+"]").offset().top)}}};$(function(){General.subscript.init()});
