jQuery(document).ready(function(){
	// oznaceni / odznaceni
	jQuery("#jq_check").click(function(){
	   var any = jQuery("#jq_addresses input[type=checkbox]:checked");
	   if(any.length>0){
	   		jQuery("#jq_addresses input[type=checkbox]").attr("checked","");
	   }else{
	   		jQuery("#jq_addresses input[type=checkbox]").attr("checked","checked");
	   }
	});
	
	// mail oznacenym
	jQuery("#jq_send").click(function(){
	   var checked = jQuery("#jq_addresses input[type=checkbox]:checked");
	   var mails = [];
	   if(checked.length>0){
	   		for(var i=0;i<checked.length;i++){
				var mail = jQuery(checked[i]).parents("tr").find("a").text();
				mails.push(mail); 
			}
			
			mailstring = mails.join(",");
			window.location.href = "mailto:"+mailstring;
	   }
	});
	
	// adresy oddelene carkou
	jQuery("#jq_get").click(function(){
	   var checked = jQuery("#jq_addresses input[type=checkbox]:checked");
	   var mails = [];
	   if(checked.length>0){
	   		for(var i=0;i<checked.length;i++){
				var mail = jQuery(checked[i]).parents("tr").find("a").text();
				mails.push(mail); 
			}
			
			mailstring = mails.join(", ");
			jQuery("<blockquote style='margin-bottom:10px;text-align:left;'>"+mailstring+"</blockquote>").insertAfter("#jq_buttons");
	   }
	});
	
});
