	$(document).ready(function()
	{
		if ($.browser.opera || $.browser.msie)
		{
			$(".swap").each(function()
			{
				var swapthis = $(this).attr("id");	
				$(this).removeClass(swapthis + "-swap");	
				$(this).addClass(swapthis + "-swapped");	
			});
			$("p", "#fandom").addClass("fbs");
			$("span", "#fandom").addClass("fts");
			$(".end", "#news").addClass("nbs");	
			$("h3", "#news").addClass("nts");		
		}
		$(".news").each(function()
		{
    			var thisxy = $(this).position();
			var thisy = thisxy.top - 68;
			if(thisy < 1500)
			{		
				$(this).css("background-position","-330px -" +  thisy + "px");
			}
  		});	
	});