jQuery(document).ready(function(){

	$('a.share_friend').click(function(){
		$( ".Popup_share_friend" ).dialog({ 
			modal: true,
			draggable:false,
			resizable:false,
			width:400,
			buttons: { 
				"Send": function() { 
					
					//$(this).dialog("close"); 
					//window.location = "#";
				},
				"Lukk": function() { 
					$(this).dialog("close"); 
					//window.location = "#";
				}
			}
		});
	});
	
	
});
