$(document).ready(function() {
	$(document).pngFix();
	
	$("#menuUl li").prepend("<span></span>");
	
	$("#menuUl li").each(function() {
		var linkText = $(this).find("a").html();
		$(this).find("span").html(linkText);
		//alert(linkText);
	}); 
	
	$("#menuUl li").hover(function() {
		$(this).find("span").stop().animate({top: "0"}, 250);} , function() {
		$(this).find("span").stop().animate({top: "-65px"}, 250);
	});
	
	$("#menuUl li").click(function(){
    	window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$(".ln-list li").click(function(){
    	window.location=$(this).find("a").attr("href");
		return false;
	});

	$(".ln-list li").mouseover(function(){
		$(this).addClass('ln-active');
		$(this).find("a").attr("class", "ln-link");
	 
    }).mouseout(function(){
	    $(this).removeClass('ln-active');
		$(this).find("a").attr("class", "");
    });
	
	$(".ln-promolist li").click(function(){
    	window.location=$(this).find("a").attr("href");
		return false;
	});
});
