//jQuery('body').ready(function(){
	//alert("Ready");
	var BET_useragent = navigator.userAgent;
	if ((BET_useragent.match(/iPhone/i)) || (BET_useragent.match(/iPod/i))) {
		//alert("Inside if");
		var html = '<div id="iPhoneOverlay" class="beautOverlay"><div class="transparentWindow"></div>';
		html += '<div class="outerFrame"><div class="overlayFrame"><span class="exit">x</span>';
		html += '<span class="message">Free to iPhone users: <a href="http://iphone.istreamplanet.com/BET/soshelp.m3u8">Click here</a> to watch SOS Saving OurSelves - Help for Haiti. This benefit concert was hosted by Queen Latifah, Diddy and Pharrell on February 5 in Miami, and features live performances by Mary J. Blige, Wyclef, Ludacris, Ne-Yo, Robin Thicke, Keri Hilson and many more.</span>';
		html += '</div></div></div>';
		//jQuery("body").append(html);
		document.write(html);
	//	var bodyElement = document.forms[0];
	//	alert(bodyElement);
		//var tempHTML = bodyElement.innerHTML;
	//	alert(tempHTML);
		//bodyElement.innerHTML = tempHTML + html;
		//alert('Appended Code');
		jQuery('.beautOverlay .exit').click(function(){
			jQuery('.beautOverlay').remove();
		});
		//alert("What Happened");
	}
//});
