وفي السياق أكدت مصادر في البيت الأبيض لـ”الشرق الاوسط” أن هوكشتاين يجري اتصالات حثيثة مع كل من بيروت وتل أبيب، وقد يعود إلى المنطقة لهذا الغرض. وبحسب مصادر إسرائيلية عليمة، فإن الإدارة الأميركية عبرت للطرفين عن غضبها من تصرفهما.
وقالت المصادر إن واشنطن فوجئت بالتحفظات اللبنانية على مسودة الاتفاق التي عرضها عليها هوكستاين، ومن الرفض الإسرائيلي الحاد لها وأبلغتهما بأنه ما كان يجب الخروج بتلك التصريحات من الطرفين، والتي أثارت التوتر وعرقلت الاتفاق، وأكدت رغبتها في رؤية تقدم جديد في المفاوضات. وإذا لم يكن ممكناً التوصل إلى اتفاق في عهد حكومة يائير لبيد، فإنها ترى في ذلك إضاعة فرصة ستؤدي إلى خسارة فادحة للبنان. ولذلك تسعى إلى إنجاز اتفاق قبل الانتخابات الإسرائيلية، التي ستجري في الأول من نوفمبر (تشرين الثاني)، أو على الأقل التقدم نحو الاتفاق بشكل جدي.
// facebook $(function () {
(function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
window.fbAsyncInit = function () { FB.init({ appId: '824194164619125', cookie: true, xfbml: true, version: 'v2.9' }); };
//$("#facebookLogin").click(function () { // FacebookLogin(); //});
});
$(document).ready(function () { $("#submitNL").click(function (e) { e.preventDefault(); submitEmailNL(); })
$("#formNL").submit(function (e) { e.preventDefault(); submitEmailNL(); })
});
function submitEmailNL() { var email = $("#emailNL").val();
if (validateEmail(email)) { var requestObject = { Email: email }; AjaxPost("/api/Configuration/SubscribeToNewsLetter", requestObject, SuccessNewsletter, FailureNewsLetter); } else {
$("#successNL").hide(); $("#errorNL").show(); $("#errorNL").text("الرجاء تزويدنا ببريد إلكتروني صحيح."); }
}
function FailureNewsLetter(jqXHR, textStatus) { $("#successNL").hide(); $("#errorNL").show(); $("#errorNL").text("لقد حصل خطاء. الرجاء المحاوله لاحقا."); }
function SuccessNewsletter(data) {
var myJSON = data;
if (myJSON.Status == "1") {
$("#successNL").show(); $("#errorNL").hide(); $("#successNL").html(myJSON.Message); $("#emailNL").val("");
} else {
$("#successNL").hide(); $("#errorNL").show(); $("#errorNL").text(myJSON.Message); } }
function validateEmail(email) { var re = /^(([^<>()[]\.,;:s@"]+(.[^<>()[]\.,;:s@"]+)*)|(".+"))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/; return re.test(String(email).toLowerCase()); }
$(document).ready(function () { checkBreakingNews() })
function checkBreakingNews(){
AjaxGet("/api/News/BreakingNews", successBN, failureBN, null); }
function failureBN(jqXHR, textStatus) { $("#breakingNews").hide(); $('header').removeClass('withAlert') }
function successBN(data) {
var myJSON = data;
if (myJSON.Status == "1") { if (myJSON.Data.Article != null) { if (readCookie("BN-" + myJSON.Data.Article.ID) == null) {
$("#aBNCategoryName").text(myJSON.Data.Article.Category); $("#aBNCategoryName").attr("href", myJSON.Data.Article.CategoryLink);
$("#aBNTitle").text(myJSON.Data.Article.Title); $("#aBNTitle").attr("href", myJSON.Data.Article.Link); $("#aCloseBN").click(function () { closeBN(myJSON.Data.Article.ID); }) //alert(myJSON.Data.Article.Position); if (myJSON.Data.Article.Position == "bottom") { $("#breakingNews").addClass("bottomBreakingNews"); $('header').removeClass('withAlert') } else { $("#breakingNews").removeClass("bottomBreakingNews"); $('header').addClass('withAlert') } $("#breakingNews").show(); } else {
$("#breakingNews").hide(); } } else { $("#breakingNews").hide(); $('header').removeClass('withAlert') } } else { $("#breakingNews").hide(); $('header').removeClass('withAlert') }
setTimeout(function () { checkBreakingNews(); }, 100000)
}
function closeBN( id) {
createCookie("BN-" + id, "1", 1);
$('.menuHolder').removeClass('noTransition') $("#breakingNews").hide(); $('.menuHolder').css('top', '46px') $('header').removeClass('withAlert') fixedMenu()
}