$(document).ready(function(){
	$(".li_Angel").not('.free_Sim').hover(function(){
		$(this).css({ cursor: "pointer"});
	}).click(function(){
		var t = $(this).find("a.js_Link:first, a.js_Link_Head:first, .hidden_link").attr("href");
		top.location.href = t;
	});
		
	// Add "NEW" icon to Help & support link
	var n = $(document.createElement("div"));
	n.addClass("new_Icon");
	n.append($(document.createElement("img")).attr("src", "/imgs/icons/ico_new-header.png").attr("width", "31").attr("height", "17"));
	var h = $('a[title^=Help &]:first').parent().parent().parent().parent();
	//h.prepend(n);
	//console.log(h);
	
	$(document).pngFix();

});
