$("a[target]").live("click",function(){
	var href = $(this).attr("href");
	var target = $(this).attr("target") ;
	$.ajax({
		url:href,
		cache:false,
		success:function(html){
			$(target)
				.empty()
				.append(html);
		}
	});
	
	return false;
});