function gettoploginhtml(){
	 urllink = 'http://www.arbitrageconspiracy.com/site/getloginhtml';
	 jQuery.ajax({
                 type: "POST",
                 url:urllink,
                 data: '',
                 success: function(response) {
                 	 jQuery('#toplogin').html(response);
                 },
				error: function(){
					   
				}
             })       
             
}


function getfooterhtml(e){
	 urllink = 'http://www.arbitrageconspiracy.com/site/getfooterlinks';
	 jQuery.ajax({
                 type: "POST",
                 url:urllink,
                 data: '',
                 success: function(response) {
                 	jQuery('#'+e).html(response);
                 },
				error: function(){
					  
				}
             })       
             
}


function getusername(e){
	 urllink = 'http://www.arbitrageconspiracy.com/site/usertitlename';
	 jQuery.ajax({
                 type: "POST",
                 url:urllink,
                 data: '',
                 success: function(response) {
                 	jQuery('.'+e).html(response);
                 },
				error: function(){
					  
				}
             })       
             
}

