$(function() {

	$('.password').each(function() {

		var clip = new ZeroClipboard.Client();
		console.log(clip);
	    var thisObj = $(this);
	    clip.glue(this);
	    var txt = $(this).text();
	    clip.setText(txt);
	    
	    clip.addEventListener('complete', function(client, text) {
	        $('.message').html('<p>Copied to clipboard!</p>').fadeIn('500', function(){
	          $(this).fadeOut(500);
	        });
	        $(this).addClass('highlighted');
	    }); 
	});
	

});
