			$(document).ready(function() {
				$("img.hoverpuff").not('.active').hover(
				function() {
					var image_name = this.src;
					this.src = image_name.replace("out","over");
				},
				function() {
					var image_name = this.src;
					this.src = image_name.replace("over","out");
				}
				);
				
				$(".tpl_startsida #gns-start li").hover(
					function() {
						$(this).stop().animate({top:'-11px'},{queue:false, duration:70});
					},
					function() {
						$(this).stop().animate({top:'0'},{queue:false, duration:70});
					}
				);
				$(".tpl_startsida #gns-start li a").hover(function() {
					$(this).find('span').stop(true, true).animate({opacity: "show", top: "60"}, 70);
				}, function() {
					$(this).find('span').stop(true, true).animate({opacity: "hide", top: "70"}, 70);
				});
				$("a.expandee").hover(function() {
					$(this).addClass("active");
				}, function() {
					$(this).removeClass("active");
				});				
				// Expander
				$("a.expandee").click(function () {
					//$(this).toggleClass("active");
			        $(this).parent().next('.expander').toggleClass('active');
			        return false;
				});

				//Cufon.replace('#news-listing-top span, #gns li a, #gns li a span, #gns li a:hover, #gns li a:hover span, #gns li a.active, #gns li a.active span', {hover:true}); 
				Cufon.replace('#gns, #news-listing-top span', {hover:true}); 

			});
