function RandomizeHeaderPlease(){
	//debugger;
	var Lang="";
	if(window.location.href.toLowerCase().indexOf("english") > 0)
		Lang = "en";
	else
		Lang = "ar";
	var randomnumber = (Math.floor(Math.random()*4))+1 ; // 1-4
	var BackgroundUrl = "#1#HeaderImages/banner#2#";
	if(Lang == "ar")
	{
		BackgroundUrl = BackgroundUrl.replace("#1#", "/Arabic");
		BackgroundUrl = BackgroundUrl.replace("#2#", "2"+ ".jpg");
		var AppliedStyle = "background:#007381 url('"+ BackgroundUrl + "') top center no-repeat !important";
		$('body').attr("style",AppliedStyle );
	}
	else
	{
		if(Lang == "en")
		{
		BackgroundUrl = BackgroundUrl.replace("#1#", "/English");
		BackgroundUrl = BackgroundUrl.replace("#2#", "2" + ".jpg");
		var AppliedStyle = "background:#007381 url('"+ BackgroundUrl + "') top center no-repeat !important";
		$('body').attr("style",AppliedStyle );
		}
	}
}
