/**
 * @author musings
 */
$(document).ready(function()
			{
				$("#menu ul li a").mouseenter(function()
				{
					$(this).parent().css(
					{
						"background":"url('images/coda25.png') center 0px no-repeat"
					});
					
					$("#menu ul li.selected, #menu ul li.selected a").css(
					{
						"background":"none"
					});
					
				});
				
				$("#menu ul li a").mouseleave(function()
				{
					$(this).parent().css(
					{
						"background":"none"
					});
					
					$("#menu ul li.selected").css(
					{
						"background":"url('images/coda25.png') center 0px no-repeat"
					});
					
				});
				
				
				$("#menu ul li.selected a").mouseenter(function()
				{
					$(this).parent().css(
					{
						"background":"url('images/coda25.png') center 0px no-repeat"
					});
					
				});
				
				$("#credits").mouseenter(function()
				{
					$("#credits p").html("<p>100% coded by <a href='http://www.musings.it' target='_blank'>Musings</a></p>");
				});
				
				$("#credits").mouseleave(function()
				{
					$("#credits p").html("<p><a href='http://www.musings.it'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></p>");
				});
				
				$('a[href^="http://"]').attr("target", "_blank");
				$('a[href^="http://www.fairy-tails.org/"], a[href^="http://fairy-tails.splinder.com/"]').attr("target", "");
				
			});
