﻿$(function () {
	var $alert = $('#alert');
	 var ie6to8 = jQuery.support.leadingWhitespace;
    var ie7to8 = jQuery.support.objectAll;
	
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { //test for MSIE x.x;
		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
		if (ieversion<=8){

		$alert.append(
                '<p>'
				+" هذه الصفحة غير متوافقة مع الأكسبلور "
				+" ، مارأيك بتنزيل "
                +"<a href='http://www.google.com/chrome'>Google chrome</a>"
                + ' أو '
                +"<a href='http://www.mozilla.com/firefox/'> Firefox</a>"
                +' أو '
				+"<a href='http://www.apple.com/safari/'>Safari</a>"
				+"<span>......غوكوروسان</span>"
				+"</p>"
				+"<span id='hide'>"
				+"<a href='#'>X</a>"
				+'</span>'
				)
				.animate({height: $alert.css('line-height') || '50px'}, 900);
				$('#alert #hide').click(function () {
				$alert.animate({height: '0'}, 800);
		});
	}
	
}
else{
	$alert.append(
                "<p>"
				+" أخي الزائر،مواد هذا الموقع لم تعد مجانية، فقط قم بقراءة قضية سرقة دار النشر لجهدنا "
				+"</p>"
				+"<span id='hide'>"
				+"<a href='#'>X</a>"
				+'</span>'
				)
				.animate({height: $alert.css('line-height') || '50px'}, 900);
				$('#alert #hide').click(function () {
				$alert.animate({height: '0'}, 800)

})
};
})

