// JavaScript Document

$(document).ready(function(){
  $("ul.most_discussed li:first-child").css("background", "url(/images/style_ffxivblog/discussed_bg.png) no-repeat 0 0");
  $("ul.most_discussed li:nth-child(2)").css("background", "url(/images/style_ffxivblog/discussed_bg.png) no-repeat 0 -36px");
  $("ul.most_discussed li:nth-child(3)").css("background", "url(/images/style_ffxivblog/discussed_bg.png) no-repeat 0 -72px");
  $("ul.most_discussed li:nth-child(4)").css("background", "url(/images/style_ffxivblog/discussed_bg.png) no-repeat 0 -108px");
  $("ul.most_discussed li:last-child").css("background", "url(/images/style_ffxivblog/discussed_bg.png) no-repeat 0 -144px");
});

$(document).ready(function(){ 	
	$(".nav ul.child").removeClass("child");
	$(".nav li").has("ul").hover(function(){
		$(this).addClass("current").children("ul").fadeIn();
	}, function() {
		$(this).removeClass("current").children("ul").hide();
	});
});



