function wtargetInit(){
	$(".wtarget a").each(function(){
		var  Href = $(this).attr("href");
		$(this).parent().click(function(){
			window.open(Href,"_self");
			return false;
		});
		$(this).parent().hover(
			function(){
				$(this).addClass("h");
			},
			function(){
				$(this).removeClass("h");
			}
		);
	});
}

$(document).ready(wtargetInit);