function SetupFullBlogControl(e,a,d,c,b){AJAXCall("/Public/PublicWebMethods.aspx/GetMostRecentBlogPost",new Object(),function(f){$("#"+e).html(f.Title);$("#"+b).html(f.BlogContent);$("#"+c).html(f.DatePosted);if(f.Author!=""){$("#"+a).html("Posted by "+f.Author+" | ")}SetBlogPostAuthorImage(f.Author,d)},null,null)}function SetupPartialBlogControl(b,a){AJAXCall("/Public/PublicWebMethods.aspx/GetMostRecentBlogPost",new Object(),function(c){$("#"+b).html(c.Title);$("#"+a).html(c.Description)},null,null)}function SetBlogPostAuthorImage(c,a){var b;switch(c){case"Amy Schnebelin":b="/Images/AmyTN.gif";break;case"Jacob Gordon":b="/Images/JakeTN2.jpg";break;case"Jay Gatz":b="/Images/JayTN.gif";break;case"Justin Daw":b="/Images/JustinTN.jpg";break;case"Robert Binzley":b="/Images/BobTN.gif";break;case"Ryan Lattimer":b="/Images/RyanTN.gif";break}if(b!=undefined){$("#"+a).css("display","inline");$("#"+a).attr("src",b)}};