$(document).ready(function(){

	// Insert Jajah Btn
	html = '<div id="jajahWrap">';
	html += '<div id="jajahCover"></div>';
	html += '<div id="jajahbtn">';
	html += '<a id="closeBtn" href="#" onclick="$(\'#jajahWrap\').hide();return false;">Close this</a>';
	html += '<embed type="application/x-shockwave-flash" src="http://www.jajah.com/buttons/jjb.swf?v=1.02" width="250" height="220" wmode="transparent" allowScriptAccess="always" allowFullScreen="true" flashvars="atm=43520&amp;ctc=3355443&amp;bgc=16777215&amp;bcc=42562&amp;mcl=11604374&amp;sn=MilTechSource&amp;lng=en&amp;lnko=1&amp;loc=any" quality="high" bgcolor="#ffffff" name="JajahButton" id="JajahButton" />';
	html += '</div></div><!--/jajahCover /jajahWrap-->';

	$('body').prepend(html);

	// Activate Link
	$('#btnCall').click(function(){

		jajahPopup();
		return false;
	});

	$("#jajahCover").click(function(){
		$("#jajahWrap").hide();
	});

});

function jajahPopup(){

	var btn = $("#jajahbtn");
	btn.css("top", (($(window).height() - 220)/2) + "px");
	btn.css("left", (($(window).width() - 250)/2) + "px");

	$("#jajahWrap").show();
}
