$(function(){
	$("#help_model").hover(
		function(e){
			xpos = e.pageX;
			$("#modeldiv").append(
				'<div id="popup_container"><div id="top_header_help"><div id="popup_header_text">Model Listing</div></div>'+
				'<div id="bottom_body_help"><div id="popup_body_text">If your model is not listed please contact us!</div></div></div>'
			);

			$("#popup_container").css("display:block;");
			$(this).mousemove(function(e){
				$('#popup_container').css({'left':(e.pageX-50)+'px'});
			});
			$("#popup_container").fadeIn(300);
		},
		function(){
			$("#popup_container").fadeOut(300);
			$("#popup_container").remove();
		}
	);
	
	$("#help_network").hover(
		function(){
			$("#networkdiv").append(
				'<div id="popup_container"><div id="top_header_help"><div id="popup_header_text">Network</div></div>'+
				'<div id="bottom_body_help"><div id="popup_body_text">Please select the Network your phone is currently <strong>locked</strong> to, <strong style="color:red;">NOT</strong> the network you wish to use it on</div></div></div>'
			);
			$("#popup_container").css("display:block; ");
			$(this).mousemove(function(e){
				$('#popup_container').css({'left':(e.pageX-50)+'px'});
			});
			$("#popup_container").fadeIn(300);
		},
		function(){
			$("#popup_container").fadeOut(300);
			$("#popup_container").remove();
		}
	);
	
	$("#help_imei").hover(
		function(){
			$("#imeidiv").append(
				'<div id="popup_container"><div id="top_header_help"><div id="popup_header_text">Finding Your IMEI</div></div>'+
					'<div id="bottom_body_help"><div id="popup_body_text">Press on the dialpad<br /><br /><center><strong style="font-size:24px;">*#06#</strong></center><br />to get the IMEI number<br /><strong style="color:#F00">(Do not get it from the box or on back of the phone!)</strong><br /><br />Or Go to<br /><div style="margin-left:10px;">(settings > about phone/status > IMEI Number)</div><br />We require ONLY the first <strong>15 digits</strong> of your IMEI Number</div></div></div>'
			);
			$("#popup_container").css("display:block;");
			$(this).mousemove(function(e){
				$('#popup_container').css({'left':(e.pageX-50)+'px'});
			});
			$("#popup_container").fadeIn(300);
		},
		function(){
			$("#popup_container").fadeOut(300);
			$("#popup_container").remove();
		}
	);
});
