On Saturday, June 2 gardening expert, TV/radio host, author columnist Melinda Myers will be doing FREE gardening demonstrations in Germantown West Bend at the Stein Gardens and Gifts locations there. The demonstrations will cover “Summer Container Gardens Tips for Gardening Success.” She’ll also be available to answer gardening questions.
Saturday, June 2, 2012
(11 a.m. – 1 p.m.) – Stein’s Gardens Gifts – Germantown, W184N9676 Appleton Ave, 262-253-1147
(2:30 p.m. – 4:30 p.m.) – Stein’s Gardens Gifts – West Bend, 601 County Hwy B, 262-338-5252
About Melinda Myers
Nationally known gardening expert, TV/radio host, author columnist Melinda Myers has more than 30 years of horticulture experience and has written over 20 gardening books, including Can’t Miss Small Space Gardening and The Garden Book for Wisconsin. She hosts the nationally syndicated Melinda’s Garden Moment segments which air on over 100 TV and radio stations throughout the U.S.. She is a columnist and contributing editor for Birds Blooms magazine and writes the twice monthly “Gardeners’ Questions” newspaper column. Melinda also has a column in Gardening How-to magazine as well as Wisconsin Gardening magazine. Melinda hosted “The Plant Doctor” radio program for over 20 years as well as seven seasons of Great Lakes Gardener on PBS. She has written articles for Better Homes and Gardens and Fine Gardening and was a columnist and contributing editor for Backyard Living magazine. Melinda has a master’s degree in horticulture, is a certified arborist and was a horticulture instructor with tenure. Her web site is www.melindamyers.com
-
Please login to post a comment.
‘);
});
$(“#comments-list”).delegate(“.rank”,”mouseenter”,function(){
$(this).find(“.bubble”).css(“display”,”block”);
}).delegate(“.rank”,”mouseleave”,function(){
$(this).find(“.bubble”).css(“display”,”none”);
});
$(“#comments-list”).delegate(“.loggedin .rankup,.loggedin .rankdown”,”click”,function(e){
e.preventDefault();
var rankButton = $(this);
if(!rankButton.hasClass(“off”)){
var count = rankButton.html();
if(rankButton.is(“.rankup”)){
$(‘#rankingform input[name=upranking]’).val(“true”);
$(‘#rankingform input[name=downranking]’).val(“false”);
}else{
$(‘#rankingform input[name=upranking]’).val(“false”);
$(‘#rankingform input[name=downranking]’).val(“true”);
}
$(‘#rankingform input[name=commentID]’).val(rankButton.attr(“href”).replace(“#comment-“,””));
insertRanking(document.getElementById(“rankingform”),true,function(obj){
//debugResponse(obj);
if(obj.error){
switch(obj.error){
case(“No registered user found to be logged in”):
rankButton.addClass(‘off’).siblings().addClass(‘off’).filter(‘.bubble’).html(“Please login to rate”).show().delay(2000).queue(function(){
$(this).hide();
});
break;
case(“Registered Users cannot rank on a comment more than once”):
rankButton.addClass(‘off’).siblings().addClass(‘off’).filter(‘.bubble’).html(“You’ve already rated!”).show().delay(2000).queue(function(){
$(this).hide();
});
break;
default:
}
}else{
//increment count, disable rank buttons, change bubble message
rankButton.html(parseInt(count)+1).addClass(‘off’).siblings().addClass(‘off’).filter(‘.bubble’).html(“Thanks for rating!”).show().delay(2000).queue(function(){
$(this).hide();
});
}
});
}else{
rankButton.siblings(“.bubble”).html(“You’ve already rated!”).show().delay(2000).queue(function(){
$(this).hide();
});
}
});
$(“#comments-list”).delegate(“.body”,”click”,function(e){
e.stopPropagation();
$(this).siblings(“.tools”).find(“.reply-link”).eq(0).trigger(“click”);
});
$(“#comment-body”).focus(function(){
var commentTextArea = $(this);
if(commentTextArea.val() == “What do you think?”){
commentTextArea.parents(“form”).addClass(“active”);
commentTextArea.val(“”);
$(“#comment-submit”).removeAttr(“disabled”);
commentTextArea.maxlength({“feedback” : “#comment-body-remaining”});
}
}).blur(function(){
var commentTextArea = $(this);
if(!commentTextArea.val()){
commentTextArea.parents(“form”).removeClass(“active”);
commentTextArea.val(“What do you think?”);
$(“#comment-submit”).attr(‘disabled’, ‘disabled’);
}
}).autogrow();
$(“#comment-form”).find(“.cancel”).click(function(e){
e.preventDefault();
$(this).parents(“form”).find(“textarea”).val(“”).trigger(“blur”);
});
$(“#comments-list”).delegate(“.reply-to-comment-body”,”focus”,function(e){
var commentTextArea = $(this);
if(commentTextArea.val() == “Write a reply…”){
commentTextArea.parent(“form”).addClass(“active”);
commentTextArea.val(“”).siblings(“input[type=submit]”).removeAttr(“disabled”);
}
}).delegate(“.reply-to-comment-body”,”blur”,function(e){
var commentTextArea = $(this);
if(!commentTextArea.val()){
commentTextArea.parent(“form”).removeClass(“active”);
commentTextArea.val(“Write a reply…”).siblings(“input[type=submit]”).attr(‘disabled’, ‘disabled’);
}
});
$(“#comments-list”).delegate(“.reply-link”,”click”,function(e){
e.preventDefault();
var gotCommentId = $(this).closest(“.blurb”).attr(“id”).replace(“comment-“,””);
var replyFormContainer = $(“#reply-form-static .reply-form”).clone(true);
replyFormContainer.find(“input[name=parentID]”).val(gotCommentId);
if(_commentUser.isLoggedIn){
replyFormContainer.find(“.avatarimg”).attr(“src”,_commentUser.avatarUrl);
}
replyFormContainer.find(“.reply-to-comment-body”).autogrow();
$(this).parents(“.parent”).find(“.reply-form”).remove();
$(this).parents(“.parent”).find(“.replies”).append(replyFormContainer);
if(_commentUser.isLoggedIn){
replyFormContainer.show();
replyFormContainer.find(“.reply-to-comment-body”).trigger(“focus”);
}else{
replyFormContainer.show().find(“.reply-to-comment-body”).trigger(“focus”);
}
});
$(“#comments-list”).delegate(“.report”,”click”,function(e){
e.preventDefault();
window.open($(this).attr(“href”),”_blank”,”width=600,height=500″);
});
var buildCommentHTMLString = function(obj){
var stamp = “Today at “+obj.commentDate.substring(obj.commentDate.indexOf(” “)+1);
var comment = ‘
‘+_commentUser.userName+’ – – Report Abuse
‘;
return comment;
}
$(“#comments”).delegate(“.edit-comment-form,.reply-to-comment-form,#comment-form”,”submit”,function(e){
e.preventDefault();
var thisForm = $(this);
var mainMessageContainer = $(“#comment-form-messages”);
if(thisForm.is(“.reply-to-comment-form”)){
var messageCont = thisForm.parent(“.reply”).siblings(“.active-reply-container”);
if(messageCont.length == 0){
messageCont = $(‘
‘);
thisForm.parent(“li”).before(messageCont);
}
if(_commentUser.isLoggedIn){
insertComment(this,true,function(obj){
//debugResponse(obj);
if(obj.error){
if(obj.error == “User must be logged in to perform the action.”){
messageCont.html(“
Please login to post your comment.
“);
thisForm.hide().parent(“li”).hide();
}else{
messageCont.html(“
Sorry, there was a problem when submitting your comment, please try again.
“);
}
messageCont.removeClass(“hide”);
}else{ // possible status APPROVED,NOTAPPROVED, FLAGGED, AUTHOR, BOT, REJECTED
if(obj.status == “APPROVED”){
messageCont.attr(“id”,”comment-“+obj.id).html(buildCommentHTMLString(obj));
_commentUser.refreshComments = true;
$.cookie(‘_commentSession’,_commentUser,{expires:_commentUser.expires,path:’/’});
}else{// handle all other cases with this blanket
messageCont.html(“
Your comment has been received. If you do not see it immediately, it is being routed for approval.
“);
}
//reset form
messageCont.removeClass(“active-reply-container hide”);
thisForm.find(“.reply-to-comment-body”).val(“”).css(“height”,”18px”).trigger(“blur”);
}
});
}else{
messageCont.html(“
Please login to post your comment.
“);
thisForm.hide().parent(“li”).hide();
messageCont.removeClass(“hide”);
}
}else{ // new
if(_commentUser.isLoggedIn){
insertComment(this,true,function(obj){
//debugResponse(obj);
if(obj.error){
if(obj.error == “User must be logged in to perform the action.”){
mainMessageContainer.html(“
Please login to post your comment.
“);
thisForm.hide();
}else{
mainMessageContainer.html(“
Sorry, there was a problem when submitting your comment, please try again.
“);
}
}else{ // possible status APPROVED,NOTAPPROVED, FLAGGED, AUTHOR, BOT, REJECTED
if(obj.status == “APPROVED”){
$(“#comments-list ol”).eq(0).prepend(‘
‘);
_commentUser.refreshComments = true;
$.cookie(‘_commentSession’,_commentUser,{expires:_commentUser.expires,path:’/’});
}else{// handle all other cases with this blanket
mainMessageContainer.html(“
Your comment has been received. If you do not see it immediately, it is being routed for approval.
“);
}
//reset form
mainMessageContainer.html(“”);
$(“#comment-body”).val(“”).trigger(“blur”);
}
});
}else{
mainMessageContainer.html(“
Please login to post your comment.
“);
thisForm.hide();
}
}
});
$(“#comments-list”).delegate(“.pagination a”,”click”,function(e){
e.preventDefault();
_gaq.push([‘_trackPageview’]);
$(“#comments-list”).html(‘
Loading comments…
‘);
$(“html,body”).animate({scrollTop:respondScrollTo},”fast”);
if($(e.currentTarget).is(“.all”)){
_paging.setHash(true,{event:”viewall”,viewAll:$(e.currentTarget).html().indexOf(“Page”) -1 ? 0 : 1});
}else{
var p = $(e.currentTarget).attr(“href”).replace(“#comments”,””);
p = p.substring(p.indexOf(“page=”)+5);
if(p.indexOf(“”) -1){
p = p.substring(0,p.indexOf(“”));
}
_paging.setHash(true,{event:”loadpage”,page:parseInt(p)});
}
});
$(“.sorting select”).change(function(){
_gaq.push([‘_trackPageview’]);
$(“#comments-list”).html(‘
Sorting comments…
‘);
var srt = $(“.sorting select option:selected”).val();
srt = srt.substring(srt.indexOf(“sort=”)+5);
var p = srt.indexOf(“newest”) -1 ? _paging.pages : 1;
_paging.setHash(true,{event:”sort”,sort:srt,page:p});
});
$(“.pagesize a”).click(function(e){
e.preventDefault();
_gaq.push([‘_trackPageview’]);
$(this).addClass(‘active’).siblings().removeClass(‘active’);
$(“#comments-list”).html(‘
Adjusting page size…
‘);
_paging.setHash(true,{event:”pagesize”,pageSize:$(this).html()});
});
var getCommentBody = function(__comment){
var j = [];
j.push(‘
‘,__comment.userString,’ – – Report Abuse
‘);
return j.join(“”);
}
function spew(array, process, context){
setTimeout(function(){
var item = array.shift();
process.call(context, item);
if (array.length 0){
setTimeout(arguments.callee, 100);
}
}, 100);
}
$(window).hashchange(function(){
if(_paging.event == “pageload”){
var windowLocationHash = window.location.hash;
windowLocationHash = windowLocationHash.replace(/^#!/,””);
if(windowLocationHash windowLocationHash.indexOf(“comment-“) == -1){
var urlVars = [], hash;
var hashes = windowLocationHash.split(”);
for(var i = 0; i Refreshing comments…’);
}
}
if(_paging.event != “pageload” || (_paging.event == “pageload” windowLocationHash windowLocationHash.indexOf(“comment-“) == -1)){
$.ajax({
url:_paging.url(),
cache:false,
dataType: ‘json’,
success:function(__data){
var __comnts = __data.comments;
var __comntsLength = __comnts.length;
if(__comntsLength 0){
var comts = [];
var appendNth = 10;
if(__comntsLength ‘,getCommentBody(__comment),’
- ‘);
if(__comment.hasResponses){
var __commentResponses = __comment.responses;
var __commentResponsesLength = __commentResponses.length;
for (var r=0; r ‘,getCommentBody(__response),”);
}
}
comts.push(‘
‘);
if((i+1) % appendNth == 0 || (i+1) == __comntsLength) {
if((i+1) == __comntsLength){
que.push(‘
- ‘+comts.join(”)+’
‘+__data.html);
}else{
que.push(‘
- ‘+comts.join(”)+’
‘);
}
comts = [];
_chunk++;
}
}
if(que.length 1){
spew(que,function(chunk){
$(“#comments-list”).append(chunk);
$(“#comments-list .bzdu.commenter-“+_commentUser.id).removeClass(“bzdu”).addClass(“bzbu”);
});
}else{
$(“#comments-list”).append(que.join(”));
$(“#comments-list .bzdu.commenter-“+_commentUser.id).removeClass(“bzdu”).addClass(“bzbu”);
}
_paging.setHash(false,{event:”pageload”});
if(windowLocationHash.indexOf(“comment=”) -1){
var scrl = windowLocationHash;
scrl = scrl.substring(scrl.indexOf(“comment=”)+8);
if(scrl.indexOf(“”) -1){
scrl = scrl.substring(0,scrl.indexOf(“”));
}
$(“#comment-“+scrl).addClass(‘highlighted’);
$(“html,body”).animate({scrollTop:$(“#comment-“+scrl).offset().top},”fast”);
}
}else{
$(“#comments-list”).html(‘
‘);
}
},error: function(a,b,c){
//alert(“ajax error:” + a+”,”+b+”,”+c);
$(“#comments-list”).html(__data.html+’
Oops, its taking too long to retrieve comments, please try again.
‘+__data.html);
}
});
}
});
if(_commentUser.refreshComments == true){//occurs when someone posts a comment then refreshes page
_commentUser.refreshComments = false;
$.cookie(‘_commentSession’,_commentUser,{expires:_commentUser.expires,path:’/’});
$(“#comments-list”).html(‘
Refreshing comments…
‘);
$(“.sorting select option:selected”).removeAttr(‘selected’);
$(“.sorting select .newestfirst”).attr(‘selected’, ‘selected’);
_paging.setHash(true,{event:”pagerefresh”,sort:”newestfirst”,page:_paging.pages});
}else if(!window.location.hash){//this sets default sort order to newestfirst on initial page load
$(“#comments-list”).html(‘
Refreshing comments…
‘);
$(“.sorting select option:selected”).removeAttr(‘selected’);
$(“.sorting select .newestfirst”).attr(‘selected’, ‘selected’);
_paging.setHash(true,{event:”pagerefresh”,sort:”newestfirst”,page:_paging.pages});
}
$(window).hashchange();

E-mail Newsletter
Your link to the biggest stories in the suburbs delivered Thursday mornings.
Enter your e-mail address above and click “Sign Up Now!” to begin receiving your e-mail newsletter
Get the Newsletter!
Speak Your Mind