jQuery(document).ready(function(){
	var all_contacts = jQuery('.contact_user');
	for(var i=0; i<all_contacts.length; i++){
		var current_contact = jQuery('.contact_user')[i];
		
		jQuery(current_contact).toggle(function() {
			jQuery('.contact_holder_right').show('slow');
			
		//alert(jQuery('.contact_details', this).html());
		$('.contact_row').html("");
		jQuery('.contact_row').append($('.contact_details', this).html());
			
		}, function() {
			jQuery('.contact_holder_right').hide('slow');
		});	
	}
	
	jQuery('.contact_close').click(function() {
		jQuery('.contact_holder_right').hide('slow');							   								   
	});	
	

	jQuery('.contact_holder_right').hide('slow');		
});