
/*
$(function(){
    
    $("#clipboardButton").each(function() {
    
        var clip = new ZeroClipboard.Client();
        var thisObj = $(this);
        clip.glue(thisObj[0]);
        var txt = $(this).parent().find("#selectForCopy").text();
        clip.setText(txt);
        
        // show clipboard success
        clip.addEventListener('complete', function(client, text) {
            $("#copyNotification").fadeIn(1500, function(){
	           $(this).fadeOut(1500);  
            });
        });
    
    
    }); 

});

<div id="clipboardButton"></div><div id="selectForCopy"></div>

*/

function initClipboardButton()
	{
					
			//$(function(){
			    
			    $("#clipboardButton").each(function() {
			    
			        var clip = new ZeroClipboard.Client();
			        var thisObj = $(this);
			        clip.glue(thisObj[0]);
			        var txt = $(this).parent().find("#selectForCopy").text();
			        clip.setText(txt);
			        
			        // show clipboard success
			        clip.addEventListener('complete', function(client, text) {
			            $("#copyNotification").fadeIn(500, function(){
				           $(this).fadeOut(2000);  
			            });
			        });
			    
			    
			    }); 
			
			//});


	}




