//Start slide upside tab (my account share on popups)@@@@@@@@@@@@@@@@@@@@@@@@@@@===
$(document).ready(function(){

	$('#tt1 ul').hide();
	$('#tt2 ul').hide();
	$('#tt3 ul').hide();

	$('#afc').hover(function() {
				$('#afc #tt1 ul').slideDown(700);
				return false;
			},function() {
			});
				
				$("#close").click(function () { 
    			  $('#afc #tt1 ul').slideUp(700); 
				  return false;
   			 });

			
			$('#nfc').hover(function() {
				$('#nfc #tt2 ul').slideDown(700);
				return false;
			},function() {
			});
			
			$("#close1").click(function () {  
    			  $('#nfc #tt2 ul').slideUp(700); 
				  return false;
   			 });
			
			
			$('#ad').hover(function() {
				$('#ad #tt3 ul').slideDown(700);
				return false;
			},function() {
			});
			
			$("#close2").click(function () { 
    			  $('#ad #tt3 ul').slideUp(700); 
				  return false;
   			 });
			
			
})
