| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| |
| <title>Discovery satisfies thirst for knowledge about soldier - JSOnline</title> |
| <meta property="fb:admins" content="100000996203017"> |
| <meta property="fb:app_id" content="114161048613011"> |
| <link type="image/x-icon" rel="icon" href="http://media.jsonline.com/designimages/JSO_favicon2.ico"> |
| <link type="image/icon" rel="icon" href="http://media.jsonline.com/designimages/JSO_favicon2.ico"> |
| <link type="image/png" rel="icon" href="http://media.jsonline.com/designimages/JSO_fa.png2.ico"> |
| <link type="image/vnd.microsoft.icon" rel="icon" href="http://media.jsonline.com/designimages/JSO_favicon2.ico"> |
| <link type="image/vnd.microsoft.icon" rel="shortcut icon" href="http://media.jsonline.com/designimages/JSO_favicon2.ico"> |
|
|
|
|
| <meta property="og:image" content="http://media.jsonline.com/images/Column+Header+-+Stingle.gif"> |
| <meta property="og:title" content="Discovery satisfies thirst for knowledge about soldier - JSOnline"> |
| <meta name="title" content="Discovery satisfies thirst for knowledge about soldier - JSOnline"> |
| <meta name="description" property="og:description" content="The water canteen that sustained U.S. Marine Pvt. George Weiland until the day he was killed on a Pacific Island during World War II found its way home to Milwaukee Friday."> |
|
|
| <script type="text/javascript" async="" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/ga.js"></script><script type="text/javascript"> |
|
|
| //Objects to interact with server |
| var CMSUtil = { |
| interactWithServer: function(form, isAjax, buildObjectFunction, |
| returnFunction, action, servlet, |
| extraFields){ |
| if(isAjax == true && returnFunction != null){ |
| var queryString = this.serializeForm(form); |
| if(queryString != null){ |
| if(action != null){ |
| queryString += "&action=" + action + "&isAjax=Y"; |
| }else{ |
| queryString += "&isAjax=Y"; |
| } |
| if(extraFields){ |
| queryString += extraFields; |
| } |
| |
| var req = this.getXmlRequestObject(); |
| if(req != null) { |
| var handlerFunction = this.getReadyStateHandler(req, returnFunction, buildObjectFunction); |
| req.onreadystatechange = handlerFunction; |
| req.open("POST", servlet, true); |
| req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8"); |
| req.send(queryString); |
| return false; |
| } |
| } |
| }else{ |
| this.submitUserFormNoAJAX(form, action, servlet); |
| } |
| }, |
| |
| getXmlRequestObject: function() { |
| var req; |
| if(window.XMLHttpRequest){ |
| req = new XMLHttpRequest(); |
| }else if(window.ActiveXObject){ |
| try{ |
| req = new ActiveXObject("Msxml2.XMLHTTP"); |
| }catch(e){ |
| try{ |
| req = new ActiveXObject("Microsoft.XMLHTTP"); |
| }catch(e){ |
| return null; |
| } |
| } |
| } |
| return req; |
| }, |
| |
| getReadyStateHandler: function(req, returnFunction, buildObjectFunction) { |
|
|
| return function () { |
|
|
| // If the request's status is "complete" |
| if (req.readyState == 4) { |
| |
| // Check that a successful server response was received |
| if (req.status == 200) { |
|
|
| // Pass the XML payload of the response to the |
| // handler function |
| var response = "(" + req.responseText + ")"; |
| response = eval(response); |
| buildObjectFunction(response); |
| returnFunction(response); |
| } else { |
| // An HTTP problem has occurred |
| alert("HTTP error: "+req.status); |
| } |
| } |
| } |
| }, |
| |
| serializeForm: function(form){ |
| var paramString = ""; |
| var ampRegex = new RegExp("&", "g"); |
| var replaceAmpStr = escape("&"); |
| var percentRegex = new RegExp("%", "g"); |
| var replacePerStr = escape("%"); |
|
|
| for(var i = 0;i < form.elements.length;i++){ |
| var field = form.elements[i]; |
| if(field.tagName === "TEXTAREA" || (field.tagName === "INPUT" && field.type !== "submit")){ |
| if(field.type === "checkbox" && !field.checked){ |
| continue; |
| } |
| var fieldValue = field.value; |
| fieldValue = fieldValue.replace(percentRegex, replacePerStr); |
| fieldValue = fieldValue.replace(ampRegex, replaceAmpStr); |
| paramString += field.name + "=" + fieldValue + "&"; |
| } |
| } |
|
|
| return paramString; |
| }, |
| submitUserFormNoAJAX: function(form, action, servlet){ |
| if(servlet == null) return null; |
| form.action = servlet; |
|
|
| if(action != null) { |
| var actionField = document.createElement('input'); |
| actionField.setAttribute('name', 'action'); |
| actionField.setAttribute('type', 'hidden'); |
| actionField.value = action; |
| form.appendChild(actionField); |
| |
| } |
| form.submit(); |
| } |
| |
| } |
| |
| var Action = { |
| attachAction: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "attachActionAJAX"; |
| } else { |
| action = "attachAction"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, Action.buildAction, returnFunction, action, "/s"); |
| }, |
| |
| deleteAction: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "deleteActionAJAX"; |
| } else { |
| action = "deleteAction"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, Action.deletedAction, returnFunction, action, "/s"); |
| }, |
| |
| |
| buildAction: function(response){ |
| if(response.success == true){ |
| Action.actionID = response.actionID; |
| Action.contentID = response.contentID; |
| Action.commentID = response.commentID; |
| Action.contentTypeID = response.contentTypeID; |
| Action.actionDate = response.actionDate; |
| Action.userID = response.userID; |
| Action.actionType = response.actionType; |
| Action.slugLine = response.slugLine; |
| } else { |
| Action.error = response.error; |
| } |
| }, |
| |
| deletedAction: function(response){ |
| if(response.success == true){ |
| Action.actionID = response.actionID; |
| } else { |
| Action.error = response.error; |
| } |
| } |
| } |
| |
| var Ranking = { |
| insertRanking: function(form, isAjax, returnFunction){ |
| CMSUtil.interactWithServer(form, isAjax, Ranking.buildRanking, returnFunction, "rankComment", "/p"); |
| }, |
| |
| buildRanking: function(response){ |
| if(response.success == true){ |
| Ranking.success = true; |
| Ranking.objectId = response.objectId; |
| Ranking.type = response.type; |
| Ranking.ipAddress = response.ipAddress; |
| Ranking.rankDate = response.rankDate; |
| Ranking.upRanking = response.upRanking; |
| Ranking.downRanking = response.downRanking; |
| } else { |
| Ranking.error = response.error; |
| } |
| } |
| |
| } |
| |
| var Rating = { |
| addRating: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "addRatingAJAX"; |
| } else { |
| action = "addRating"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, Rating.buildRating, returnFunction, action, "/s"); |
| }, |
| |
| insertRating: function(form, isAjax, returnFunction){ |
| var extraQueryStr = null; |
| if(isAjax){ |
| extraQueryStr = getFieldsForForm(); |
| }else{ |
| addFieldsToForm(form); |
| } |
| CMSUtil.interactWithServer(form, isAjax, Comment.buildComment, returnFunction, "insertComment", "/c", extraQueryStr); |
| }, |
| |
| buildRating: function(response){ |
| if(response.success == true){ |
| Rating.id = response.id; |
| Rating.rating = response.rating; |
| Rating.upvote = response.upvote; |
| Rating.downvote = response.downvote; |
| Rating.type = response.type; |
| Rating.date = response.date; |
| Rating.ipAddress = response.ipAddress; |
| }else{ |
| Rating.error = response.error; |
| } |
| } |
| |
| } |
| |
| var User = { |
| createUser: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "createProfileAJAX"; |
| } else { |
| action = "createProfile"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s"); |
| }, |
| |
| loginUser: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "doLoginProfileAJAX"; |
| } else { |
| action = "doLoginProfile"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s"); |
| }, |
| |
| updateUser: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "updateProfileAJAX"; |
| } else { |
| action = "updateProfile"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s"); |
| }, |
| |
| updateRegistration: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "updateRegistrationAJAX"; |
| } else { |
| action = "updateReg"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s"); |
| }, |
| |
| updateProfilePassword: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| action = "updateProfilePasswordAJAX"; |
| } else { |
| action = "updateProfilePassword"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s"); |
| }, |
| |
| insertProfilePic: function(form, isAjax, returnFunction){ |
| var action = ""; |
| if(isAjax){ |
| //not implemented as of yet |
| return; |
| //action = "updateImageAJAX"; |
| } else { |
| action = "updateImage"; |
| } |
| CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s"); |
| }, |
| |
| buildUser: function(response){ |
| if(response.success == true){ |
| User.ID = response.ID; |
| User.username = response.username; |
| User.email = response.email; |
| User.firstName = response.firstName; |
| User.lastName = response.lastName; |
| User.birthDate = response.birthDate; |
| User.createDate = response.createDate; |
| User.title = response.title; |
| User.company = response.company; |
| User.address1 = response.address1; |
| User.address2 = response.address2; |
| User.city = response.city; |
| User.state = response.state; |
| User.zipcode = response.zipcode; |
| User.country = response.country; |
| User.custom1 = response.custom1; |
| User.custom2 = response.custom2; |
| User.custom3 = response.custom3; |
| User.custom4 = response.custom4; |
| User.custom5 = response.custom5; |
| User.custom6 = response.custom6; |
| User.custom7 = response.custom7; |
| User.custom8 = response.custom8; |
| User.custom9 = response.custom9; |
| }else{ |
| User.error = response.error; |
| User.errorMsg = response.errorMsg; |
| User.errorCode = response.errorCode; |
| } |
| } |
| } |
| |
| var UserContent = { |
| insertContent: function(form, isAjax, returnFunction){ |
| var extraQueryStr = null; |
| |
| if(isAjax){ |
| extraQueryStr = getFieldsForForm(); |
| }else{ |
| addFieldsToForm(form); |
| } |
| UserContent.messages = null; |
| CMSUtil.interactWithServer(form, isAjax, UserContent.buildContent, returnFunction, extraQueryStr, "/d"); |
| }, |
| |
| editContent: function(form, isAjax, returnFunction){ |
| CMSUtil.interactWithServer(form, isAjax, UserContent.buildContent, returnFunction, null, "/d"); |
| }, |
| |
| buildContent: function(response){ |
| if(response.success == true){ |
| for (var i=0; i< response.fields.length; i++){ |
| var field = response.fields[i]; |
| UserContent[field] = response[field]; |
| } |
| UserContent.contentID = response.contentID; |
| UserContent.contentType = response.contentType; |
| UserContent.title = response.title; |
| UserContent.status = response.status; |
| } else { |
| UserContent.error = response.error; |
| UserContent.messages = response.messages; |
| } |
| } |
| } |
| |
| var Comment = { |
| |
| insertComment: function(form, isAjax, returnFunction){ |
| var extraQueryStr = null; |
| if(isAjax){ |
| extraQueryStr = getFieldsForForm(); |
| }else{ |
| addFieldsToForm(form); |
| } |
| CMSUtil.interactWithServer(form, isAjax, Comment.buildComment, returnFunction, "insertComment", "/c", extraQueryStr); |
| }, |
| |
| deleteComment: function(form, isAjax, returnFunction){ |
| var extraQueryStr = null; |
| if(isAjax){ |
| extraQueryStr = getFieldsForForm(); |
| }else{ |
| addFieldsToForm(form); |
| } |
| CMSUtil.interactWithServer(form, isAjax, Comment.nullifyComment, returnFunction, "deleteComment", "/c", extraQueryStr); |
| }, |
| |
| updateComment: function(form, isAjax, returnFunction){ |
| var extraQueryStr = null; |
| if(isAjax){ |
| extraQueryStr = getFieldsForForm(); |
| } else { |
| addFieldsToForm(form); |
| } |
| CMSUtil.interactWithServer(form, isAjax, Comment.buildComment, returnFunction, "updateComment", "/c", extraQueryStr); |
| }, |
| |
| buildComment: function(response){ |
| Comment.name = null; |
| Comment.website = null; |
| Comment.title = null; |
| Comment.comment = null; |
| Comment.email = null; |
| Comment.rating = null; |
| Comment.ratingType = null; |
| Comment.commentType = null; |
| Comment.flagged = false; |
| Comment.isAuthor = false; |
| Comment.error = null; |
| Comment.status = null; |
| Comment.level = 0; |
| Comment.parentID = 0; |
| Comment.threadID = 0; |
| Comment.id = 0; |
| Comment.extID = null; |
| |
| if(response.success == true){ |
| Comment.id = response.id; |
| Comment.name = response.name; |
| Comment.comment = response.comment; |
| Comment.email = response.email; |
| Comment.website = response.website; |
| Comment.title = response.title; |
| Comment.isAuthor = response.isAuthor; |
| Comment.flagged = response.flagged; |
| Comment.status = response.status; |
| Comment.rating = response.rating; |
| Comment.ratingType = response.ratingType; |
| Comment.commentType = response.commentType; |
| if(Comment.status == "AUTHOR"){ |
| Comment.isAuthor = true; |
| } else if(Comment.status != "APPROVED") { |
| Comment.flagged = true; |
| } |
| Comment.id = response.id; |
| Comment.threadID = response.threadID; |
| Comment.parentID = response.parentID; |
| Comment.level = response.level; |
| Comment.extID = response.extID; |
| } else { |
| Comment.error = response.error; |
| } |
| }, |
| |
| nullifyComment: function(response){ |
| if(response.success == true){ |
| Comment.comment = null; |
| Comment.email = null; |
| Comment.website = null; |
| Comment.title = null; |
| Comment.isAuthor = null; |
| Comment.flagged = null; |
| Comment.status = null; |
| Comment.id = 0; |
| Comment.threadID = 0; |
| Comment.parentID = 0; |
| Comment.level = 0; |
| Comment.extID = null; |
| } else { |
| Comment.error = response.error; |
| } |
| } |
| } |
| |
| var Clickability = Clickability || {}; |
| Clickability.SMTK = { |
| kP : 0, |
| aT : 0, |
| myInterval : null, |
| xPos : -1, |
| yPos : -1, |
| firstX : -1, |
| firstY : -1, |
| intervals : 0, |
| cid : 29431599 , |
| did : 380769 , |
| d : 0, |
| mT : 0 |
| } |
| Clickability.SMTK.myInterval = window.setInterval(timedMousePos,250); |
| document.onkeypress = lK; |
| window.onload = rAT; |
|
|
| Clickability.Comment = Comment; |
| |
| var p; |
| var kP = 0; |
| var aT = 0; |
| var myInterval = Clickability.SMTK.myInterval; |
| var xPos = -1; |
| var yPos = -1; |
| var firstX = -1; |
| var firstY = -1; |
| var intervals = 0; |
| var d = 0; |
| var mT = 0; |
| var cid = 29431599 ; |
| var did = 380769 ; |
| |
| function getMousePos(p) { |
| if(!p)var p = window.event; |
| if (p.pageX || p.pageY) { |
| Clickability.SMTK.xPos = p.pageX; |
| Clickability.SMTK.yPos = p.pageY; |
| } else if (p.clientX || p.clientY) { |
| Clickability.SMTK.xPos = p.clientX + document.body.scrollLeft + document.documentElement.scrollLeft; |
| Clickability.SMTK.yPos = p.clientY + document.body.scrollTop + document.documentElement.scrollTop; |
| } |
| } |
|
|
| |
| function lK() { |
| Clickability.SMTK.kP++; |
| } |
|
|
| function rAT() { |
| Clickability.SMTK.aT = new Date(); |
| } |
| |
| function timedMousePos() { |
| document.onmousemove = getMousePos; |
| if (Clickability.SMTK.xPos >= 0 && Clickability.SMTK.yPos >= 0) { |
| var newX = Clickability.SMTK.xPos; |
| var newY = Clickability.SMTK.yPos; |
| Clickability.SMTK.intervals++; |
| } |
| if (Clickability.SMTK.intervals == 1) { |
| Clickability.SMTK.firstX = Clickability.SMTK.xPos; |
| Clickability.SMTK.firstY = Clickability.SMTK.yPos; |
| } else if (Clickability.SMTK.intervals == 2) { |
| clearInterval(Clickability.SMTK.myInterval); |
| calcDistance(Clickability.SMTK.firstX,Clickability.SMTK.firstY,newX,newY); |
| } |
| } |
|
|
|
|
| function calcDistance(aX,aY,bX,bY){ |
| Clickability.SMTK.mT = Math.round(Math.sqrt(Math.pow(aX-bX,2)+Math.pow(aY-bY,2))); |
| } |
| |
| function getFieldsForForm(){ |
| var sT = new Date(); |
| Clickability.SMTK.d = sT - Clickability.SMTK.aT; |
| var queryString = "&"; |
| queryString += "mT=" + Clickability.SMTK.mT; |
| queryString += "&d=" + Clickability.SMTK.d; |
| queryString += "&kP=" + Clickability.SMTK.kP; |
| if(Clickability.SMTK.cid)queryString += "&cid=" + Clickability.SMTK.cid; |
| if(Clickability.SMTK.did)queryString += "&did=" + Clickability.SMTK.did; |
| queryString += "&socialMedia=Y"; |
| return queryString; |
| } |
| |
| function addFieldsToForm(formObj, redirect) { |
| var sT = new Date(); |
| Clickability.SMTK.d = sT - Clickability.SMTK.aT; |
| var mTField = document.createElement('input'); |
| var dField = document.createElement('input'); |
| var kPField = document.createElement('input'); |
| var cidField = document.createElement('input'); |
| var didField = document.createElement('input'); |
| var socialMedia = document.createElement('input'); |
| |
| |
| socialMedia.setAttribute('name','socialMedia'); |
| socialMedia.setAttribute('type', 'hidden'); |
| |
| mTField.setAttribute('name','mT'); |
| mTField.setAttribute('type', 'hidden'); |
| |
| dField.setAttribute('name', 'd'); |
| dField.setAttribute('type', 'hidden'); |
| |
| kPField.setAttribute('name', 'kP'); |
| kPField.setAttribute('type', 'hidden'); |
| |
| cidField.setAttribute('name', 'cid'); |
| cidField.setAttribute('type', 'hidden'); |
| |
| didField.setAttribute('name', 'did'); |
| didField.setAttribute('type', 'hidden'); |
| |
| if(redirect != null) { |
| var pathField = document.createElement('input'); |
| pathField.setAttribute('name', 'path'); |
| pathField.setAttribute('type', 'hidden'); |
| pathField.value = redirect; |
| formObj.appendChild(pathField); |
| } |
| mTField.value = Clickability.SMTK.mT; |
| dField.value = Clickability.SMTK.d; |
| kPField.value = Clickability.SMTK.kP; |
| cidField.value = Clickability.SMTK.cid; |
| didField.value = Clickability.SMTK.did; |
| socialMedia.value = "Y"; |
|
|
| formObj.appendChild(dField); |
| formObj.appendChild(kPField); |
| formObj.appendChild(mTField); |
| formObj.appendChild(cidField); |
| formObj.appendChild(didField); |
| formObj.appendChild(socialMedia); |
| } |
| |
| //helper functions |
| |
| function insertComment(form, isAjax, returnFunction, showError){ |
| return submitToServer(Comment.insertComment, "Unable to insert comment", form, isAjax, returnFunction, showError); |
| } |
| |
| function updateComment(form, isAjax, returnFunction, showError){ |
| return submitToServer(Comment.updateComment, "Unable to update comment", form, isAjax, returnFunction, showError); |
| } |
| |
| function deleteComment(form, isAjax, returnFunction, showError){ |
| return submitToServer(Comment.deleteComment, "Unable to delete comment", form, isAjax, returnFunction, showError); |
| } |
| |
| function createUser(form, isAjax, returnFunction, showError){ |
| return submitToServer(User.createUser, "Unable to create user", form, isAjax, returnFunction, showError); |
| } |
| |
| function updateUser(form, isAjax, returnFunction, showError){ |
| return submitToServer(User.updateUser, "Unable to update user", form, isAjax, returnFunction, showError); |
| } |
| |
| function loginUser(form, isAjax, returnFunction, showError){ |
| return submitToServer(User.loginUser, "Unable to login user", form, isAjax, returnFunction, showError); |
| } |
| |
| function insertUserContent(form, isAjax, returnFunction, showError){ |
| return submitToServer(UserContent.insertContent, "Unable to insert content item", form, isAjax, returnFunction, showError); |
| } |
| |
| function editUserContent(form, isAjax, returnFunction, showError){ |
| return submitToServer(UserContent.editContent, "Unable to edit content item", form, isAjax, returnFunction, showError); |
| } |
| |
| function insertProfilePic(form, isAjax, returnFunction, showError){ |
| return submitToServer(User.insertProfilePic, "Unable to upload profile photo", form, isAjax, returnFunction, showError); |
| } |
| |
| function addRating(form, isAjax, returnFunction, showError){ |
| return submitToServer(Rating.addRating, "Unable to add rating", form, isAjax, returnFunction, showError); |
| } |
| |
| function insertRating(form, isAjax, returnFunction, showError){ |
| return submitToServer(Rating.insertRating, "Unable to insert rating", form, isAjax, returnFunction, showError); |
| } |
| |
| function attachAction(form, isAjax, returnFunction, showError){ |
| return submitToServer(Action.attachAction, "Unable to attach action", form, isAjax, returnFunction, showError); |
| } |
| |
| function deleteAction(form, isAjax, returnFunction, showError){ |
| return submitToServer(Action.deleteAction, "Unable to delete action", form, isAjax, returnFunction, showError); |
| } |
| |
| function insertRanking(form, isAjax, returnFunction, showError){ |
| return submitToServer(Ranking.insertRanking, "Unable to insert ranking", form, isAjax, returnFunction, showError); |
| } |
| |
| function submitToServer(method, msg, form, isAjax, returnFunction, showError){ |
| method(form, isAjax, returnFunction); |
| |
| if(isAjax){ |
| return false; |
| } else { |
| return true; |
| } |
| } |
|
|
| </script> |
|
|
| <style type="text/css">.loggedin{display:none !important;}.loggedout{display: none !important;}</style> |
| <script language="javascript" type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_cookies.js"></script> |
| <script language="javascript" type="text/javascript"> |
| function loadjscssfile(filename, filetype){ |
| if (filetype=="js"){ //if filename is a external JavaScript file |
| var fileref=document.createElement('script') |
| fileref.setAttribute("type","text/javascript") |
| fileref.setAttribute("src", filename) |
| } |
| else if (filetype=="css"){ //if filename is an external CSS file |
| var fileref=document.createElement("link") |
| fileref.setAttribute("rel", "stylesheet") |
| fileref.setAttribute("type", "text/css") |
| fileref.setAttribute("href", filename) |
| } |
|
|
| if (typeof fileref!="undefined"){ |
| document.getElementsByTagName("head")[0].appendChild(fileref) |
| } |
| } |
|
|
| function modRule(showClassName){ |
| if(!document.styleSheets) |
| return; |
|
|
| var thecss = (document.styleSheets[0].cssRules) ? document.styleSheets[0].cssRules : document.styleSheets[0].rules; |
|
|
| for(i=0; i < thecss.length; i++){ |
| if(thecss[i].selectorText.toLowerCase()==showClassName) |
| thecss[i].style.cssText="display:block;"; |
| } |
| } |
|
|
| |
| //alert(cookiejar.fetch("fakeuser")) |
| // If there is a UID cookie (means they are logged in), turn the loggedin styles on |
| if(cookiejar.fetch("UID") && cookiejar.fetch("fakeuser") == null){ |
| modRule(".loggedin"); |
| // If UID, BUT no curUserInfo login cookie yet, means they've JUST logged in: call setLoginCookies to initialize the login cookies |
| if(cookiejar.fetch("curUserInfo") == null) { |
| loadjscssfile("http://www.jsonline.com/templates/JSO_determine_login_status?c=n&ran=" + Math.floor(Math.random()*1000000), "js") |
| } |
| } |
| |
| // If there is no longer a UID (means they are logged out), turn the loggedout styles on, and make sure the cookies we set upon login get cleared out |
| else if(cookiejar.fetch("UID") == null){ |
| modRule(".loggedout"); |
| cookiejar.crumble("curUserInfo"); |
| cookiejar.crumble("UID"); |
| |
| } |
| else{ |
| modRule(".loggedout"); |
| cookiejar.crumble("UID") |
| cookiejar.crumble("fakeuser") |
| cookiejar.crumble("curUserInfo"); |
| } |
| |
| |
|
|
| </script> |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_common.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_layouts.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_pageparts.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO.PagePart.Navigation.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO.PagePart.ClassifiedSiteMap.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO.PagePart.Footer.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.markitup.css"> |
| <link type="text/css" rel="stylesheet" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Lib.Common_ad.css"> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_commonFunctions.js"></script><style type="text/css">#headFeature1 {display:inline;}</style> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JI.Core.BBCode.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JI.Core.CommonFunctions.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/easyXDM.min.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.cookie.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery-ui.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.omniture_link_tracking.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.blockUI.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.maxlength.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.markitup.js"></script> |
| |
| <link href="http://www.jsonline.com/rss/?c=y&path=/news/milwaukee" rel="alternate" type="application/rss+xml" title="JSOnline Milwaukee News"> |
| <meta name="medium" content="news"> |
| <meta name="keywords" content=""> |
| <meta name="author" content="JIM STINGL"> |
| <meta name="pagetype" content="JSO Article"> |
| <meta name="publishdate" content="2008-04-06T12:00:00-07:00"> |
| <meta name="pagesection" content="/News/Milwaukee County"> |
|
|
|
|
|
|
|
|
|
|
|
|
| |
| |
| |
| |
|
|
|
|
|
|
| <script type="text/javascript"> |
| //<![CDATA[ |
| var path = "http://www.jsonline.com/news/milwaukee/29431599.html"; |
| var pageName = "Discovery satisfies thirst for knowledge about soldier"; |
| var siteId = 1; |
| var site = "jsonline.com"; |
| var account = "jijsonline"; |
| var sectionid = 380769; |
| var pageId = 29431599; |
| var category1 = "News"; |
| var category2 = "Regional"; |
| var category3 = "Milwaukee"; |
| var category4 = ""; |
| var btCategory = "News"; |
| var section1 = "news"; |
| var section2 = "newsmilwaukee"; |
| var section3 = ""; |
| var specialSection = ""; |
| var type1 = "Article"; |
| var type2 = ""; |
| var author = "JIM STINGL"; |
| var source = "www.jsonline.com"; |
| var tags = "Brand:JS Online"; |
| var demo = ""; |
| var column = ""; |
| var sReferral = ""; |
| var system = "Clickability"; |
| //]]> |
| </script> |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| <script type="text/javascript"> |
| //<![CDATA[ |
| yld_mgr = {}; |
| yld_mgr.pub_id="21968629472"; |
| yld_mgr.site_name="jsonline.com"; |
| yld_mgr.request_type="ac"; |
| yld_mgr.content_topic_id_list=['20276501']; |
| yld_mgr.site_section_name_list=['Article']; |
| yld_mgr.container_type="js"; |
| |
| //yld_mgr.content_lang=""; |
| //yld_mgr.ad_input_encoding=""; |
| //yld_mgr.ad_output_encoding=""; |
| //yld_mgr.audience_targeting=""; |
| //yld_mgr.redirect_clk_wrapper=""; |
| //yld_mgr.user_zip=""; |
| //yld_mgr.user_state=""; |
| //yld_mgr.clk_dest=""; |
| //yld_mgr.cstm_sctn_list=[]; |
| //yld_mgr.user_city=""; |
| //yld_mgr.user_gender=""; |
| //yld_mgr.user_age=""; |
| //yld_mgr.user_dma=""; |
| //yld_mgr.user_country=""; |
| //yld_mgr.disable_content_send=""; |
| //yld_mgr.user_income=""; |
| yld_mgr.slots = {}; |
| |
| yld_mgr.slots.lb_slot = {}; |
| yld_mgr.slots.lb_slot.ad_size_list=["728x90"]; |
| yld_mgr.slots.lb_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.lb_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.lb_slot.content_type_list=['fn_news']; |
| yld_mgr.slots.lb_slot.ad_format_list=["Standard Graphical","Rich Media"]; |
| yld_mgr.slots.lb_slot.ad_marker="1"; |
| |
| yld_mgr.slots.lb_bot_slot = {}; |
| yld_mgr.slots.lb_bot_slot.ad_size_list=["728x90"]; |
| yld_mgr.slots.lb_bot_slot.ad_delivery_mode="ipbtf"; |
| yld_mgr.slots.lb_bot_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.lb_bot_slot.content_type_list=['fn_news']; |
| yld_mgr.slots.lb_bot_slot.ad_format_list=["Standard Graphical","Rich Media"]; |
| yld_mgr.slots.lb_bot_slot.ad_marker="1"; |
| |
| yld_mgr.slots.bb_left_slot = {}; |
| yld_mgr.slots.bb_left_slot.ad_size_list=["300x250"]; |
| yld_mgr.slots.bb_left_slot.ad_delivery_mode="ipstf"; |
| yld_mgr.slots.bb_left_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.bb_left_slot.content_type_list=['fn_news']; |
| yld_mgr.slots.bb_left_slot.ad_format_list=["Standard Graphical","Rich Media"]; |
| yld_mgr.slots.bb_left_slot.ad_marker="1"; |
| |
| yld_mgr.slots.tb_slot = {}; |
| yld_mgr.slots.tb_slot.ad_size_list=["300x100"]; |
| yld_mgr.slots.tb_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.tb_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.tb_slot.content_type_list=['fn_news']; |
| yld_mgr.slots.tb_slot.ad_format_list=["Standard Graphical","Rich Media"]; |
| yld_mgr.slots.tb_slot.ad_marker="1"; |
| |
| yld_mgr.slots.ws_slot = {}; |
| yld_mgr.slots.ws_slot.ad_size_list=["160x600"]; |
| yld_mgr.slots.ws_slot.ad_delivery_mode="ipstf"; |
| yld_mgr.slots.ws_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.ws_slot.content_type_list=['fn_news']; |
| yld_mgr.slots.ws_slot.ad_format_list=["Standard Graphical","Rich Media"]; |
| yld_mgr.slots.ws_slot.ad_marker="1"; |
| |
| yld_mgr.slots.bb_slot = {}; |
| yld_mgr.slots.bb_slot.ad_size_list=["300x250"]; |
| yld_mgr.slots.bb_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.bb_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.bb_slot.content_type_list=['fn_news']; |
| yld_mgr.slots.bb_slot.ad_format_list=["Standard Graphical","Rich Media"]; |
| yld_mgr.slots.bb_slot.ad_marker="1"; |
| |
| yld_mgr.slots.pencil_slot = {}; |
| yld_mgr.slots.pencil_slot.ad_size_list=["1000x30"]; |
| yld_mgr.slots.pencil_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.pencil_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.pencil_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.peel_slot = {}; |
| yld_mgr.slots.peel_slot.ad_size_list=["1x1"]; |
| yld_mgr.slots.peel_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.peel_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.peel_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.tile125_slot = {}; |
| yld_mgr.slots.tile125_slot.ad_size_list=["125x125"]; |
| yld_mgr.slots.tile125_slot.ad_delivery_mode="ipbtf"; |
| yld_mgr.slots.tile125_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.tile125_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.newswatch_slot = {}; |
| yld_mgr.slots.newswatch_slot.ad_size_list=["88x31"]; |
| yld_mgr.slots.newswatch_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.newswatch_slot.cstm_content_cat_list=['Newswatch_Tile']; |
| yld_mgr.slots.newswatch_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.tb_bot_slot = {}; |
| yld_mgr.slots.tb_bot_slot.ad_size_list=["300x100"]; |
| yld_mgr.slots.tb_bot_slot.ad_delivery_mode="ipbtf"; |
| yld_mgr.slots.tb_bot_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.tb_bot_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.fb_slot = {}; |
| yld_mgr.slots.fb_slot.ad_size_list=["468x60"]; |
| yld_mgr.slots.fb_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.fb_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.fb_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.nw_bot_slot = {}; |
| yld_mgr.slots.nw_bot_slot.ad_size_list=["250x30"]; |
| yld_mgr.slots.nw_bot_slot.ad_delivery_mode="ipatf"; |
| yld_mgr.slots.nw_bot_slot.cstm_content_cat_list=['news_watch']; |
| yld_mgr.slots.nw_bot_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.tile2_slot = {}; |
| yld_mgr.slots.tile2_slot.ad_size_list=["88x31"]; |
| yld_mgr.slots.tile2_slot.ad_delivery_mode="ipstf"; |
| yld_mgr.slots.tile2_slot.cstm_content_cat_list=['Milwaukee']; |
| yld_mgr.slots.tile2_slot.content_type_list=['fn_news']; |
| |
| yld_mgr.slots.bgimg_slot = {}; |
| yld_mgr.slots.bgimg_slot.ad_size_list=["1x1"]; |
| yld_mgr.slots.bgimg_slot.ad_delivery_mode="ipbtf"; |
| yld_mgr.slots.bgimg_slot.cstm_content_cat_list=['BGImage']; |
| yld_mgr.slots.bgimg_slot.content_type_list=['fn_news']; |
| //]]> |
| </script> |
| <script type="text/javascript" src="http://e.yieldmanager.net/script.js"></script> |
|
|
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JI_advertise.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JI_trafficTracking.js"></script> |
|
|
| <script type="text/javascript"> |
| /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/ |
| var s_code = s.t(); |
| if (s_code) |
| document.write(s_code)//--> |
| </script> |
|
|
| <script type="text/javascript"> |
| //<![CDATA[ |
| if (navigator.appVersion.indexOf('MSIE') >= 0) |
| document.write(unescape('%3C') + '\!-' + '-') |
| //]]> |
| </script> |
|
|
| <noscript> |
| <a href="http://www.omniture.com" title="Web Analytics"><img src="http://jijsonline.122.2O7.net/b/ss/jijsonline/1/H.15.1--NS/0?pageName=Discovery satisfies thirst for knowledge about soldier" height="1" width="1" border="0" alt="" /></a> |
| </noscript> |
|
|
| |
|
|
| |
|
|
|
|
| <script type="text/javascript"> |
| var _gaq = _gaq || []; |
| _gaq.push(['_setAccount', 'UA-19051957-1']); |
| _gaq.push(['_trackPageview']); |
| _gaq.push(['_trackPageLoadTime']); |
| (function() { |
| var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
| ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
| var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
| })(); |
| </script> |
| <script id="facebook-jssdk" async="" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/all.js"></script><style type="text/css">.fb_hidden{position:absolute;top:-10000px;z-index:10001} |
| .fb_invisible{display:none} |
| .fb_reset{background:none;border-spacing:0;border:0;color:#000;cursor:auto;direction:ltr;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size: 11px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:1;margin:0;overflow:visible;padding:0;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal} |
| .fb_link img{border:none} |
| .fb_dialog{background:rgba(82, 82, 82, .7);position:absolute;top:-10000px;z-index:10001} |
| .fb_dialog_advanced{padding:10px;-moz-border-radius:8px;-webkit-border-radius:8px} |
| .fb_dialog_content{background:#fff;color:#333} |
| .fb_dialog_close_icon{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;_background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/yL/r/s816eWC-2sl.gif);cursor:pointer;display:block;height:15px;position:absolute;right:18px;top:17px;width:15px;top:8px\9;right:7px\9} |
| .fb_dialog_mobile .fb_dialog_close_icon{top:5px;left:5px;right:auto} |
| .fb_dialog_padding{background-color:transparent;position:absolute;width:1px;z-index:-1} |
| .fb_dialog_close_icon:hover{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent;_background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/yL/r/s816eWC-2sl.gif)} |
| .fb_dialog_close_icon:active{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent;_background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/yL/r/s816eWC-2sl.gif)} |
| .fb_dialog_loader{background-color:#f2f2f2;border:1px solid #606060;font-size: 24px;padding:20px} |
| .fb_dialog_top_left, |
| .fb_dialog_top_right, |
| .fb_dialog_bottom_left, |
| .fb_dialog_bottom_right{height:10px;width:10px;overflow:hidden;position:absolute} |
| .fb_dialog_top_left{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/ye/r/8YeTNIlTZjm.png) no-repeat 0 0;left:-10px;top:-10px} |
| .fb_dialog_top_right{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/ye/r/8YeTNIlTZjm.png) no-repeat 0 -10px;right:-10px;top:-10px} |
| .fb_dialog_bottom_left{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/ye/r/8YeTNIlTZjm.png) no-repeat 0 -20px;bottom:-10px;left:-10px} |
| .fb_dialog_bottom_right{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/ye/r/8YeTNIlTZjm.png) no-repeat 0 -30px;right:-10px;bottom:-10px} |
| .fb_dialog_vert_left, |
| .fb_dialog_vert_right, |
| .fb_dialog_horiz_top, |
| .fb_dialog_horiz_bottom{position:absolute;background:#525252;filter:alpha(opacity=70);opacity:.7} |
| .fb_dialog_vert_left, |
| .fb_dialog_vert_right{width:10px;height:100%} |
| .fb_dialog_vert_left{margin-left:-10px} |
| .fb_dialog_vert_right{right:0;margin-right:-10px} |
| .fb_dialog_horiz_top, |
| .fb_dialog_horiz_bottom{width:100%;height:10px} |
| .fb_dialog_horiz_top{margin-top:-10px} |
| .fb_dialog_horiz_bottom{bottom:0;margin-bottom:-10px} |
| .fb_dialog_iframe{line-height:0} |
| .fb_dialog_content .dialog_title{background:#6d84b4;border:1px solid #3b5998;color:#fff;font-size: 14px;font-weight:bold;margin:0} |
| .fb_dialog_content .dialog_title > span{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/yd/r/Cou7n-nqK52.gif) |
| no-repeat 5px 50%;float:left;padding:5px 0 7px 26px} |
| body.fb_hidden{-webkit-transform:none;height:100%;margin:0;left:-10000px;overflow:visible;position:absolute;top:-10000px;width:100% |
| } |
| .fb_dialog.fb_dialog_mobile.loading{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/yO/r/_j03izEX40U.gif) |
| white no-repeat 50% 50%;min-height:100%;min-width:100%;overflow:hidden;position:absolute;top:0;z-index:10001} |
| .fb_dialog.fb_dialog_mobile.loading.centered{max-height:590px;min-height:590px;max-width:500px;min-width:500px} |
| #fb-root #fb_dialog_ipad_overlay{background:rgba(0, 0, 0, .45);position:absolute;left:0;top:0;width:100%;min-height:100%;z-index:10000} |
| #fb-root #fb_dialog_ipad_overlay.hidden{display:none} |
| .fb_dialog.fb_dialog_mobile.loading iframe{visibility:hidden} |
| .fb_dialog_content .dialog_header{-webkit-box-shadow:white 0 1px 1px -1px inset;background:-webkit-gradient(linear, 0 0, 0 100%, from(#738ABA), to(#2C4987));border-bottom:1px solid;border-color:#1d4088;color:#fff;font:14px Helvetica, sans-serif;font-weight:bold;text-overflow:ellipsis;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0;vertical-align:middle;white-space:nowrap} |
| .fb_dialog_content .dialog_header table{-webkit-font-smoothing:subpixel-antialiased;height:43px;width:100% |
| } |
| .fb_dialog_content .dialog_header td.header_left{font-size: 12px;padding-left:5px;vertical-align:middle;width:60px |
| } |
| .fb_dialog_content .dialog_header td.header_right{font-size: 12px;padding-right:5px;vertical-align:middle;width:60px |
| } |
| .fb_dialog_content .touchable_button{background:-webkit-gradient(linear, 0 0, 0 100%, from(#4966A6), |
| color-stop(0.5, #355492), to(#2A4887));border:1px solid #29447e;-webkit-background-clip:padding-box;-webkit-border-radius:3px;-webkit-box-shadow:rgba(0, 0, 0, .117188) 0 1px 1px inset, |
| rgba(255, 255, 255, .167969) 0 1px 0;display:inline-block;margin-top:3px;max-width:85px;line-height:18px;padding:4px 12px;position:relative} |
| .fb_dialog_content .dialog_header .touchable_button input{border:none;background:none;color:#fff;font:12px Helvetica, sans-serif;font-weight:bold;margin:2px -12px;padding:2px 6px 3px 6px;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0} |
| .fb_dialog_content .dialog_header .header_center{color:#fff;font-size: 16px;font-weight:bold;line-height:18px;text-align:center;vertical-align:middle} |
| .fb_dialog_content .dialog_content{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;border:1px solid #555;border-bottom:0;border-top:0;height:150px} |
| .fb_dialog_content .dialog_footer{background:#f2f2f2;border:1px solid #555;border-top-color:#ccc;height:40px} |
| #fb_dialog_loader_close{float:left} |
| .fb_dialog.fb_dialog_mobile .fb_dialog_close_button{text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0} |
| .fb_dialog.fb_dialog_mobile .fb_dialog_close_icon{visibility:hidden} |
| .fb_iframe_widget{position:relative;display:-moz-inline-block;display:inline-block} |
| .fb_iframe_widget iframe{position:relative;vertical-align:text-bottom} |
| .fb_iframe_widget span{position:relative} |
| .fb_hide_iframes iframe{position:relative;left:-10000px} |
| .fb_iframe_widget_loader{position:relative;display:inline-block} |
| .fb_iframe_widget_fluid{display:inline} |
| .fb_iframe_widget_loader iframe{min-height:32px;z-index:2;zoom:1} |
| .fb_iframe_widget_loader .FB_Loader{background:url(http://static.ak.fbcdn.net/rsrc.php/v1/y9/r/jKEcVPZFk-2.gif) no-repeat;height:32px;width:32px;margin-left:-16px;position:absolute;left:50%;z-index:4} |
| .fb_button_simple, |
| .fb_button_simple_rtl{background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/yH/r/eIpbnVKI9lR.png);background-repeat:no-repeat;cursor:pointer;outline:none;text-decoration:none} |
| .fb_button_simple_rtl{background-position:right 0} |
| .fb_button_simple .fb_button_text{margin:0 0 0 20px;padding-bottom:1px} |
| .fb_button_simple_rtl .fb_button_text{margin:0 10px 0 0} |
| a.fb_button_simple:hover .fb_button_text, |
| a.fb_button_simple_rtl:hover .fb_button_text, |
| .fb_button_simple:hover .fb_button_text, |
| .fb_button_simple_rtl:hover .fb_button_text{text-decoration:underline} |
| .fb_button, |
| .fb_button_rtl{background:#29447e url(http://static.ak.fbcdn.net/rsrc.php/v1/yL/r/FGFbc80dUKj.png);background-repeat:no-repeat;cursor:pointer;display:inline-block;padding:0 0 0 1px;text-decoration:none;outline:none} |
| .fb_button .fb_button_text, |
| .fb_button_rtl .fb_button_text{background:#5f78ab url(http://static.ak.fbcdn.net/rsrc.php/v1/yL/r/FGFbc80dUKj.png);border-top:solid 1px #879ac0;border-bottom:solid 1px #1a356e;color:#fff;display:block;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;font-weight:bold;padding:2px 6px 3px 6px;margin:1px 1px 0 21px;text-shadow:none} |
| a.fb_button, |
| a.fb_button_rtl, |
| .fb_button, |
| .fb_button_rtl{text-decoration:none} |
| a.fb_button:active .fb_button_text, |
| a.fb_button_rtl:active .fb_button_text, |
| .fb_button:active .fb_button_text, |
| .fb_button_rtl:active .fb_button_text{border-bottom:solid 1px #29447e;border-top:solid 1px #45619d;background:#4f6aa3;text-shadow:none} |
| .fb_button_xlarge, |
| .fb_button_xlarge_rtl{background-position:left -60px;font-size: 24px;line-height:30px} |
| .fb_button_xlarge .fb_button_text{padding:3px 8px 3px 12px;margin-left:38px} |
| a.fb_button_xlarge:active{background-position:left -99px} |
| .fb_button_xlarge_rtl{background-position:right -268px} |
| .fb_button_xlarge_rtl .fb_button_text{padding:3px 8px 3px 12px;margin-right:39px} |
| a.fb_button_xlarge_rtl:active{background-position:right -307px} |
| .fb_button_large, |
| .fb_button_large_rtl{background-position:left -138px;font-size: 13px;line-height:16px} |
| .fb_button_large .fb_button_text{margin-left:24px;padding:2px 6px 4px 6px} |
| a.fb_button_large:active{background-position:left -163px} |
| .fb_button_large_rtl{background-position:right -346px} |
| .fb_button_large_rtl .fb_button_text{margin-right:25px} |
| a.fb_button_large_rtl:active{background-position:right -371px} |
| .fb_button_medium, |
| .fb_button_medium_rtl{background-position:left -188px;font-size: 11px;line-height:14px} |
| a.fb_button_medium:active{background-position:left -210px} |
| .fb_button_medium_rtl{background-position:right -396px} |
| .fb_button_text_rtl, |
| .fb_button_medium_rtl .fb_button_text{padding:2px 6px 3px 6px;margin-right:22px} |
| a.fb_button_medium_rtl:active{background-position:right -418px} |
| .fb_button_small, |
| .fb_button_small_rtl{background-position:left -232px;font-size: 10px;line-height:10px} |
| .fb_button_small .fb_button_text{padding:2px 6px 3px;margin-left:17px} |
| a.fb_button_small:active, |
| .fb_button_small:active{background-position:left -250px} |
| .fb_button_small_rtl{background-position:right -440px} |
| .fb_button_small_rtl .fb_button_text{padding:2px 6px;margin-right:18px} |
| a.fb_button_small_rtl:active{background-position:right -458px} |
| .fb_share_count_wrapper{position:relative;float:left} |
| .fb_share_count{background:#b0b9ec none repeat scroll 0 0;color:#333;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;text-align:center} |
| .fb_share_count_inner{background:#e8ebf2;display:block} |
| .fb_share_count_right{margin-left:-1px;display:inline-block} |
| .fb_share_count_right .fb_share_count_inner{border-top:solid 1px #e8ebf2;border-bottom:solid 1px #b0b9ec;margin:1px 1px 0 1px;font-size: 10px;line-height:10px;padding:2px 6px 3px;font-weight:bold} |
| .fb_share_count_top{display:block;letter-spacing:-1px;line-height:34px;margin-bottom:7px;font-size: 22px;border:solid 1px #b0b9ec} |
| .fb_share_count_nub_top{border:none;display:block;position:absolute;left:7px;top:35px;margin:0;padding:0;width:6px;height:7px;background-repeat:no-repeat;background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/yU/r/bSOHtKbCGYI.png)} |
| .fb_share_count_nub_right{border:none;display:inline-block;padding:0;width:5px;height:10px;background-repeat:no-repeat;background-image:url(http://static.ak.fbcdn.net/rsrc.php/v1/yX/r/i_oIVTKMYsL.png);vertical-align:top;background-position:right 5px;z-index:10;left:2px;margin:0 2px 0 0;position:relative} |
| .fb_share_no_count{display:none} |
| .fb_share_size_Small .fb_share_count_right .fb_share_count_inner{font-size: 10px} |
| .fb_share_size_Medium .fb_share_count_right .fb_share_count_inner{font-size: 11px;padding:2px 6px 3px;letter-spacing:-1px;line-height:14px} |
| .fb_share_size_Large .fb_share_count_right .fb_share_count_inner{font-size: 13px;line-height:16px;padding:2px 6px 4px;font-weight:normal;letter-spacing:-1px} |
| .fb_share_count_hidden .fb_share_count_nub_top, |
| .fb_share_count_hidden .fb_share_count_top, |
| .fb_share_count_hidden .fb_share_count_nub_right, |
| .fb_share_count_hidden .fb_share_count_right{visibility:hidden} |
| .fb_connect_bar_container div, |
| .fb_connect_bar_container span, |
| .fb_connect_bar_container a, |
| .fb_connect_bar_container img, |
| .fb_connect_bar_container strong{background:none;border-spacing:0;border:0;direction:ltr;font-style:normal;font-variant:normal;letter-spacing:normal;line-height:1;margin:0;overflow:visible;padding:0;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal;vertical-align:baseline} |
| .fb_connect_bar_container{position:fixed;left:0 !important;right:0 !important;height:42px !important;padding:0 25px !important;margin:0 !important;vertical-align:middle !important;border-bottom:1px solid #333 !important;background:#3b5998 !important;z-index:99999999 !important;overflow:hidden !important} |
| .fb_connect_bar_container_ie6{position:absolute;top:expression(document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+"px":body.scrollTop+"px")} |
| .fb_connect_bar{position:relative;margin:auto;height:100%;width:100%;padding:6px 0 0 0 !important;background:none;color:#fff !important;font-family:"lucida grande", tahoma, verdana, arial, sans-serif !important;font-size: 13px !important;font-style:normal !important;font-variant:normal !important;font-weight:normal !important;letter-spacing:normal !important;line-height:1 !important;text-decoration:none !important;text-indent:0 !important;text-shadow:none !important;text-transform:none !important;white-space:normal !important;word-spacing:normal !important} |
| .fb_connect_bar a:hover{color:#fff} |
| .fb_connect_bar .fb_profile img{height:30px;width:30px;vertical-align:middle;margin:0 6px 5px 0} |
| .fb_connect_bar div a, |
| .fb_connect_bar span, |
| .fb_connect_bar span a{color:#bac6da;font-size: 11px;text-decoration:none} |
| .fb_connect_bar .fb_buttons{float:right;margin-top:7px} |
| .fb_edge_widget_with_comment{position:relative;*z-index:1000} |
| .fb_edge_widget_with_comment span.fb_edge_comment_widget{position:absolute} |
| .fb_edge_widget_with_comment span.fb_send_button_form_widget{z-index:1} |
| .fb_edge_widget_with_comment span.fb_send_button_form_widget .FB_Loader{left:0;top:1px;margin-top:6px;margin-left:0;background-position:50% 50%;background-color:#fff;height:150px;width:394px;border:1px #666 solid;border-bottom:2px solid #283e6c;z-index:1} |
| .fb_edge_widget_with_comment span.fb_send_button_form_widget.dark .FB_Loader{background-color:#000;border-bottom:2px solid #ccc} |
| .fb_edge_widget_with_comment span.fb_send_button_form_widget.siderender |
| .FB_Loader{margin-top:0} |
| .fbpluginrecommendationsbarleft, |
| .fbpluginrecommendationsbarright{position:fixed !important;bottom:0;z-index:999} |
| /* @noflip */ |
| .fbpluginrecommendationsbarleft{left:10px} |
| /* @noflip */ |
| .fbpluginrecommendationsbarright{right:10px} |
| </style></head><link type="text/css" rel="stylesheet" href="data:text/css,"> |
| <body data-rendering="true"><iframe id="twttrHubFrame" allowtransparency="true" frameborder="0" scrolling="no" tabindex="0" name="twttrHubFrame" style="position: absolute; top: -9999em; width: 10px; height: 10px; " src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/hub.1329368159.htm"></iframe> |
| |
|
|
| <script type="text/javascript"> |
|
|
| /* <![CDATA[ */ |
|
|
| var google_conversion_id = 952962552; |
| var google_conversion_language = "en"; |
| var google_conversion_format = "3"; |
| var google_conversion_color = "666666"; |
| var google_conversion_label = ""; |
| var google_conversion_value = 0; |
| /* ]]> */ |
| </script> |
| <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js"> |
| </script> |
| <noscript> |
| <div style="display:inline;"> |
| <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/952962552/?label=&amp;guid=ON&amp;script=0"/> |
| </div> |
| </noscript> |
| |
| |
|
|
| <div id="fb-root" class=" fb_reset"><div style="position: absolute; top: -10000px; height: 0px; width: 0px; "></div></div> |
| <script type="text/javascript"> |
| $(function () { |
| FB.init({ |
| appId: '114161048613011', |
| status: true, // check login status |
| cookie: true, // enable cookies to allow the server to access the session |
| xfbml: true, // enable XFBML and social plugins |
| oauth: true, // to adapt to Oauth 2.0 |
| channelUrl: 'http://www.jsonline.com/templates/channel.html' // custom channel |
| }); |
| }); |
|
|
| // Load the SDK Asynchronously |
| (function () { |
| var js, id = 'facebook-jssdk'; if (document.getElementById(id)) { return; } |
| js = document.createElement('script'); js.id = id; js.async = true; |
| js.src = document.location.protocol + "//connect.facebook.net/en_US/all.js#xfbml=1"; |
| document.getElementsByTagName('head')[0].appendChild(js); |
| })(); |
| </script> |
|
|
| <script type="text/javascript"> |
| function logFBUser() { |
| if (window.console && window.console.log) { console.log("inside logFBUser"); } |
| try { |
| var logoutForm = $("form[name=logoutSSO]"); |
| if(logoutForm && logoutForm.length > 1) { |
| logoutForm = $("form[name=logoutSSO]")[0]; |
| } |
| if (window.console && window.console.log) { console.log("logoutForm: ", logoutForm); } |
| if (window.console && window.console.log) { console.log("logoutForm.length: ",logoutForm.length); } |
| if (window.console && window.console.log) { console.log("logoutForm[0].id: ", $(logoutForm[0]).attr("id")); } |
|
|
| FB.logout(function(response) { |
| |
| $(logoutForm).find("input[name=forceSubmit]").val("false"); |
| if (window.console && window.console.log) { console.log("logFBUser: submit 1"); } |
| logoutForm.submit(); |
| |
| }); |
| } catch (e) { |
| if (window.console && window.console.log) { console.log("logFBUser error: ", e.message); } //this executes if jQuery isn't loaded |
| } |
| // submit the form if FB.logout was not fired |
| setTimeout(ssoSubmit, 10000); |
| } |
| |
| function ssoSubmit() { |
| if (window.console && window.console.log) { console.log("inside ssoSubmit"); } |
| try { |
| var logoutForm = $("form[name=logoutSSO]"); |
| if(logoutForm && logoutForm.length > 1) { |
| logoutForm = $("form[name=logoutSSO]")[0]; |
| } |
| if (window.console && window.console.log) { console.log("logoutForm: ", logoutForm); } |
| if ($(logoutForm).find("input[name=forceSubmit]").val() == "true") { |
| if (window.console && window.console.log) { console.log("---------- do submit"); } |
| if (window.console && window.console.log) { console.log("logFBUser: submit 2"); } |
| logoutForm.submit(); |
| } |
| } catch (e) { |
| if (window.console && window.console.log) { console.log("ssoSubmit: error: ", e.message); } |
| if (window.console && window.console.log) { console.log("---------- do reload"); } |
| //window.location.reload(); |
| window.location.href = "http://www.jsonline.com/s?action=doLogout&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html"; |
| } |
| } |
| </script> |
|
|
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/formcheck.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Lib.MembershipValidation.js"></script> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Lib.MembershipFacebookIntegration.js"></script> |
|
|
|
|
| <script type="text/javascript"> |
| if (window.console && window.console.log && console.group) { |
| console.group("> MASTER"); |
| console.group("> > cms user info"); |
| console.log("--- username = '$cms.subscriptionUser.username'"); |
| console.log("--- email = '$cms.subscriptionUser.email'"); |
| console.log("--- externalSSOUser = '$cms.subscriptionUser.externalSSOUser'"); |
| console.log("--- externalProfileId = '$cms.subscriptionUser.externalProfileId'"); |
| console.groupEnd(); |
| console.group("> > cookie user info"); |
| console.log("+++ UID = '" + cookiejar.fetch("UID") + "'"); |
| console.log("+++ userName = '" + subcookiejar.fetch("curUserInfo", "userName") + "'"); |
| console.log("+++ ssoUser = '" + subcookiejar.fetch("curUserInfo", "ssoUser") + "'"); |
| console.log("+++ ssoProfileId = '" + subcookiejar.fetch("curUserInfo", "ssoProfileId") + "'"); |
| console.groupEnd(); |
| console.group("> > fbs_114161048613011 cookie info:"); |
| console.log(cookiejar.fetch("fbs_114161048613011")); |
| console.groupEnd(); |
| console.groupEnd(); |
| } |
| </script> |
|
|
| <div id="bodyLayer2"> |
| <script type="text/javascript"> |
| InsertTrackingPixel("http://www.googleadservices.com/pagead/conversion/952962552/?label=bq0WCIijrgMQ-Ju0xgM&guid=ON&script=0"); |
| </script><img src="http://www.googleadservices.com/pagead/conversion/952962552/?label=bq0WCIijrgMQ-Ju0xgM&guid=ON&script=0" border="0" width="0" height="0" style="display: none !important; visibility: hidden !important; opacity: 0 !important; "> |
|
|
|
|
| <script language="Javascript">var js="0.0";</script><script language="Javascript1.0">js="1.0";</script><script language="Javascript1.1">js="1.1";</script><script language="Javascript1.2">js="1.2";</script><script language="Javascript1.3">js="1.3";</script><script language="Javascript1.4">js="1.4";</script><script language="Javascript1.5">js="1.5";</script><script language="Javascript1.6">js="1.6";</script><script language="Javascript1.7">js="1.7";</script><script language="Javascript1.8">js="1.8";</script><script language="Javascript1.9">js="1.9";</script><script language="javascript1.1" type="text/javascript"> |
| <!-- |
| var bb=new Image();var _ti=910;var _q="";var na=(navigator.appName=="Netscape");var ns=(navigator.appName.substring(0,9)=="Microsoft");var _qDate=new Date();var _r=(document.referrer.indexOf(getdomain(location))>-1?"":document.referrer);_q+="&5="+parseInt(_qDate.getTimezoneOffset());_q+="&35="+parseInt(_qDate.toString().indexOf("aylight")>-1?1:0);_q+="&6=29431599";_q+="&7=380769";_q+="&8="+encodeURIComponent(document.location);_q+="&9="+encodeURIComponent(_r);_q+="&10="+encodeURIComponent(document.title);_q+="&11="+encodeURIComponent(navigator.userAgent);_q+="&12="+encodeURIComponent((na?navigator.language:navigator.userLanguage));_q+="&13="+((navigator.javaEnabled()?'1':'0'));_q+="&14="+encodeURIComponent(js);if(document.cookie.indexOf("cc")==-1)document.cookie="cc=t;";_q+="&15="+((document.cookie.indexOf("cc")==-1)?"0":"1");_q+="&16="+encodeURIComponent((screen.width+'x'+screen.height));_q+="&17="+encodeURIComponent(((ns)?screen.colorDepth:screen.pixelDepth));_q+="&18="+encodeURIComponent(Math.random());_q+="&19="+_ti;bb.src="http://s.clickability.com/s?"+_q; |
| function setonclicks(a,b){var i=0;var retval=true;while(document.links[i]!=a){i++;}if(b.li[i])retval=b.li[i].oldonclick();bye(a);return retval;} |
| function newonld(){if(hasonload)oldonld();lnks=new Object();var sze=document.links.length;lnks.li=new Array(sze);for (var i=0; i<sze; i++){if(document.links[i].onclick){lnks.li[i]=document.links[i];lnks.li[i].oldonclick=document.links[i].onclick;}eval("document.links[i].onclick=function(){return setonclicks(this,lnks);}");}}function bye(a){if(a.href.toLowerCase().indexOf('http')!=0)return true;if(getdomain(location)==getdomain(a))return true;if(a.href.toLowerCase().indexOf('http')!=0)return true;var _qc="http://s.clickability.com/s?19=912";_qc+="&6=29431599";_qc+="&7=380769";_qc+="&18="+encodeURIComponent(Math.random());_qc+="&100="+a.href;_qc+="&101="+encodeURIComponent(a.text);var cc=new Image();if(na){cc.src=_qc;pc(100);}else cc.src=_qc;return true;}function pc(a){d = new Date(); while (1){m =new Date(); df = m-d;if( df > a ) {break;}}}function getdomain(a){var i=a.host.indexOf(":");return (i>=0)?a.host.substring(0,i):a.host;}if(self['setupalready']){var dosetup = false;alert('There are two $imware.tracker calls on this page. Please alert Client Services');}else{var dosetup = true;var hasonload=false;}if(dosetup && ((window.screen)||((new Array()).toSource)||((new Array()).shift&&ns))&&(navigator.userAgent.indexOf('Mac')<0)){if(window.onload){oldonld=window.onload;hasonload=true;}window.onload=newonld;var setupalready = true;}//--> |
| </script><noscript> |
| <img width="1" height="1" src="http://s.clickability.com/s?19=990&14=0&6=29431599&7=380769&18=0.39663494569794566"> |
| </noscript> |
| <div id="content_container"> |
|
|
| |
| <div class="accountbar"> |
| <strong><span class="subscriber_login_welcome"></span> JS Everywhere Subscription:</strong> <a href="http://www.jsonline.com/?subscriber_login=y" class="subscriber_login">Login</a> | <a href="https://www.subscriber-service.com/mjs/nspromotions/subscribe1_new.aspx" target="_blank">Subscribe</a> | <a href="https://www.subscriber-service.com/mjs/" target="_blank">Manage Subscription</a>| <a href="http://www.jsonline.com/help">Help</a> . . |
| <strong>Public Profile:</strong> <a href="http://www.jsonline.com/s?action=login&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html" class="s_login">Sign in</a> | <a href="http://www.jsonline.com/s?action=reg&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html" class="s_username">Create profile</a> |
| <form name="logoutSSO" id="logoutSSO_${velocityCount}" method="post" action="http://www.jsonline.com/s" style="display:none;"> |
| <input type="hidden" name="action" value="doLogout"> |
| <input type="hidden" name="forceSubmit" value="true"> |
| </form> |
| </div> |
| <script type="text/javascript"> |
| if(subcookiejar.fetch("curUserInfo") != null){ |
| $(".s_login").attr("href","http://www.jsonline.com/s?action=doLogout&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html").html("Logout"); |
| var ssoUser = subcookiejar.fetch("curUserInfo", "ssoUser"); |
| if(ssoUser != null && ssoUser != "undefined" && ssoUser != "null" && ssoUser.toLowerCase() == "true"){ |
| $(".s_login").click(function(e){ |
| logFBUser(); |
| }); |
| } |
| $(".s_username").attr("href","http://www.jsonline.com/s?action=editReg&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html").html(subcookiejar.fetch("curUserInfo","userName").substring(0,10)+"..."); |
| } |
| </script> |
|
|
| <div id="masthead" class="noindex"> |
| <div id="jsonline-page-sponsor"> |
| <a href="http://www.jsonline.com/"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo4_JSO1.gif" width="239" height="95" alt="" title="" border="0" id="jsonline-logo"></a> |
| <div id="topBoxAd_Ext" class="leaderboardAd"> |
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
| <div class="block ad Yahoo id44003987 size728x90"> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("lb_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
|
|
| </div> |
| </div> |
| <div style="clear: both;"></div> |
| </div> |
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
|
| |
|
|
|
|
|
|
|
|
| <div id="jsonline-navigation" class="tab-2"> |
| <div class="tabs"> |
| <ul class="main"> |
|
|
|
|
|
|
|
|
| <li class="odd pos_1 first tab-1"><a href="http://www.jsonline.com/">Home</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_2 tab-2 selected"><a href="http://www.jsonline.com/news">News</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_3 tab-3"><a href="http://www.jsonline.com/watchdog">Watchdog</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_4 tab-4"><a href="http://www.jsonline.com/news/opinion">Opinion</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_5 tab-5"><a href="http://www.jsonline.com/sports">Sports</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_6 tab-6"><a href="http://www.jsonline.com/business">Business</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_7 tab-7"><a href="http://www.jsonline.com/features/food">Food</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_8 tab-8"><a href="http://www.jsonline.com/entertainment">Entertainment</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_9 tab-9"><span>Lifestyle</span></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_10 tab-10"><a href="http://www.jsonline.com/multimedia/28472744.html">Photo/Video</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_11 last tab-11"><a href="http://www.milwaukeemoms.com/" target="_blank">Moms</a></li> |
| </ul> |
| <ul class="classified"> |
|
|
|
|
|
|
|
|
| <li class="odd pos_1 first tab-12"><a href="http://www.jsonline.com/classified">Classified</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_2 tab-13"><a href="http://www.jobnoggin.com/" target="_blank">Jobs</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_3 tab-14"><a href="http://www.carsoup.com/jsonline/home/Milwaukee-Wisconsin/" target="_blank">Cars</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_4 tab-15"><a href="http://www.jsonline.com/homes">Homes</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_5 tab-16"><a href="http://www.jsonline.com/rentals">Rentals</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_6 last tab-17"><a href="http://www.milwaukeemarketplace.com/" target="_blank">MJs List</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_1 first tab-1 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/news/30720924.html">Got a Tip?</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/newswatch">NewsWatch</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://weather.todaystmj4.com/" target="_blank">Weather</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/blogs">Blogs</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/news/obituaries">Obituaries</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/news/usandworld">AP Wires</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://jsonline.mobi/" target="_blank">Mobile</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.jsonline.com/contact.html">Contact Us</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9"><a href="http://www.jsonline.com/rss">RSS</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_10"><a href="http://www.jsonline.com/columns/corrections.html">Corrections</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_11"><a href="http://www.511wi.gov/Web/TravelTimes.aspx" target="_blank">Traffic Times</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_12"><a href="http://www.jsonline.com/news/milwaukee/34276114.html">Gas Prices</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_13 last"><a href="http://tickets.jsonline.com/">Tickets</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_2 tab-2 sub selected"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/news/">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/news/milwaukee">Milwaukee</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/news/waukesha">Waukesha</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/news/ozwash">Ozaukee/Washington</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/news/wisconsin">Wisconsin</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/news/statepolitics">Politics</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.politifact.com/wisconsin" target="_blank">PolitiFact</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.jsonline.com/news/obituaries/">Obituaries</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9"><a href="http://www.jsonline.com/news/education">Education</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_10"><a href="http://www.jsonline.com/news/crime">Crime</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_11 last"><a href="http://www.jsonline.com/specialreports">Special Reports</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_3 tab-3 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/watchdog">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/watchdog/watchdogreports">Watchdog Reports</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/watchdog/noquarter">No Quarter</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.politifact.com/wisconsin" target="_blank">PolitiFact</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/blogs/news/dogged.html">Dogged Blog</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/watchdog/dataondemand">Data on Demand</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/watchdog/citizenwatchdog">Citizen Watchdog</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8 last"><a href="http://www.jsonline.com/watchdog/33283159.html">Meet the Watchdog team</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_4 tab-4 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/news/opinion">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/news/opinion/#editorials">Editorials</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/news/opinion/#perspectives">Local Perspectives</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/blogs/news/acrosstheboard.html">Editorial Board Blog</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/news/opinion/#crossroads">Crossroads</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/columns/james_E_causey.html">Causey</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/columns/mike_nichols.html">Nichols</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.jsonline.com/news/opinion/#letters">Letters</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9 last"><a href="http://www.jsonline.com/news/opinion/#nationalcolumnists">National Columnists</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_5 tab-5 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/sports">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://jsonline.sportsdirectinc.com/gamematchups.aspx" target="_blank">Scores/Stats</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/sports/packers">Packers</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/sports/brewers">Brewers</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/sports/bucks">Bucks</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/sports/badgers">UW</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/sports/goldeneagles">MU</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.jsonline.com/sports/panthers">UWM</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9"><a href="http://www.jsonline.com/sports/statecolleges">State</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_10"><a href="http://www.jsonline.com/sports/preps">Preps Plus</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_11"><a href="http://www.jsonline.com/sports/golf">Golf</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_12"><a href="http://www.jsonline.com/sports/autoracing">Auto Racing</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_13"><a href="http://www.jsonline.com/sports/outdoors">Outdoors</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_14"><a href="http://www.jsonline.com/sports/hockey">Hockey</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_15"><a href="http://www.jsonline.com/sports/soccer">Soccer</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_16 last"><a href="http://www.jsonline.com/sports/video">Video</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_6 tab-6 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/business">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/business/businesswatch">BusinessWatch</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/business/pressrelease/">PRHub</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/blogs/business/pluggedin.html">Energy</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/harley">Harley</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/blogs/business/shoptalk.html">Retail</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/blogs/business/landandspace.html">Commercial Real Estate</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.jsonline.com/columns/new_faces_new_places.html">New Faces, New Places</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9 last"><a href="http://www.jsonline.com/newsletters">E-mail Newsletter</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_7 tab-7 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/features/food">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/features/recipes">Recipes</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/columns/nancy_stohs.html">Stohs</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/columns/sandy_damato.html">D'Amato</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/foodfight">Food Fight</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/columns/you_asked_for_it.html">You Asked For It</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7 last"><a href="http://www.jsonline.com/multimedia/photos/95814639.html">Look and Cook</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_8 tab-8 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/entertainment/movies">Movies</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/entertainment/dining">Dining</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/entertainment/musicandnightlife">Music & Night life</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/entertainment/arts">Arts</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/entertainment/books">Books</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/entertainment/tvradio">TV & Radio</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/entertainment/tapevents">Events</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.jsonline.com/comics">Comics</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9"><a href="http://jsonline.com/winterguide">Winter Guide</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_10"><a href="http://www.jsonline.com/puzzles">Games & Puzzles</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_11 last"><a href="http://www.jsonline.com/contests/">Contests</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_9 tab-9 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/features/health">Health and Fitness</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/features/homeandgarden">Home and Garden</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/features/religion">Religion</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/features/travel">Travel</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/blogs/entertainment/stanmiller.html">Personal Technology</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/weddings">Weddings</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/features/advice">Advice</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8"><a href="http://www.milwaukeemoms.com/" target="_blank">Milwaukee Moms</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_9 last"><a href="http://www.jsonline.com/sponsoredarticles/">Sponsored Articles</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_10 tab-10 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/multimedia/28472744.html">Main Page</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/multimedia/video">Local Video</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://video.ap.org/?f=WIMIL" target="_blank">National Video</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.jsonline.com/sports/video" target="_blank">Sports Video</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/photosoftheweek">Photos of the Week</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.jsonline.com/multimedia/photos/?type=staff">Staff Photo Galleries</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7 last"><a href="http://www.jsonline.com/multimedia/photos/?type=reader">Reader Photo Galleries</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_11 tab-11 sub"> |
| |
| <ul class="sub main"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.milwaukeemoms.com/forum/" target="_blank">Forums</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.milwaukeemoms.com/events/" target="_blank">Events</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.milwaukeemoms.com/resources/" target="_blank">Resources</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://www.milwaukeemoms.com/multimedia/" target="_blank">Photo/Video</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.milwaukeemoms.com/blogs/" target="_blank">Blogs</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://www.milwaukeemoms.com/metroparent/" target="_blank">metroparent</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7 last"><a href="http://www.milwaukeemoms.com/stories/" target="_blank">Stories</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_1 first tab-12 sub"> |
| <ul class="sub"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/deathnotices">Death Notices</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.jsonline.com/celebrations">Celebrations</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/pets/">Pets</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://secure.adpay.com/searchresults.aspx?p=2200®ion=2169&catid=205" target="_blank">Deals & Steals</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/classified">Classified Ads</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://secure.adpay.com/searchresults.aspx?p=2200&catid=249" target="_blank">Rummage</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/sponsoredarticles">Sponsored Articles</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8 last"><a href="http://secure.adpay.com/adwizard_login.aspx?a=2F6B314138345A772F70554B36524A483742772B71666462434B345168496F37526C7436335533584353494D693865516358542F6E69592F7036777449667150&catid=SW%20Merchandise" target="_blank">Place an Ad</a></li> |
|
|
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_2 tab-13 sub"> |
|
|
|
|
| <a href="http://www.jobnoggin.com/" target="_blank"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jobnoggin_subnav_logo.jpg" width="113" height="28" alt="JobNoggin" title="JobNoggin" border="0" class="logo"></a> |
| |
| <ul class="sub"> |
|
|
|
|
|
|
|
|
| <li class="odd pos_1 first"><a href="http://jobsearch.jobnoggin.monster.com/Browse.aspx" target="_blank">Browse Jobs</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_2"><a href="http://my.jobnoggin.monster.com/Career-Management/Landing.aspx" target="_blank">Career Tools</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_3"><a href="http://career-advice.jobnoggin.monster.com/" target="_blank">Advice</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_4"><a href="http://www.scorelogix.com/jss_start.asp?pid=7" target="_blank">Job Security Score</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_5 last"><a href="http://www.jobnoggin.com/foremployers/" target="_blank">For Employers</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_3 tab-14 sub"> |
|
|
|
|
| <a href="http://www.carsoup.com/jsonline/home/Milwaukee-Wisconsin/" target="_blank"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/carsoup_subnav_logo.jpg" width="115" height="28" alt="JSOnline CarSoup" title="JSOnline CarSoup" border="0" class="logo"></a> |
| |
| <ul class="sub"> |
|
|
|
|
|
|
|
|
| <li class="odd pos_1 first"><a href="http://www.carsoup.com/jsonline/new-vehicles/Milwaukee-Wisconsin" target="_blank">New</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_2"><a href="http://www.carsoup.com/jsonline/used-vehicles/make/Milwaukee-Wisconsin" target="_blank">Used</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_3"><a href="http://www.carsoup.com/jsonline/sell-your-vehicle/Milwaukee-Wisconsin" target="_blank">Sell</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_4"><a href="http://www.carsoup.com/jsonline/services/Milwaukee-Wisconsin" target="_blank">The Shop</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_5"><a href="http://www.carsoup.com/jsonline/login.aspx?" target="_blank">My Garage</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_6"><a href="http://www.carsoup.com/jsonline/dealers/Milwaukee-Wisconsin" target="_blank">Dealers</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_7"><a href="http://www.carsoup.com/jsonline/shops-and-services/financing/pre-approved/Milwaukee-Wisconsin" target="_blank">Financing</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_8"><a href="http://www.carsoup.com/jsonline/services/Souper-Deals/Milwaukee-Wisconsin" target="_blank">Specials</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_9"><a href="http://www.carsoup.com/jsonline/used-vehicles/classifieds/31/List/?filterset=7&vehicletypes=" target="_blank">Classified Ads</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_10"><a href="http://www.carsoup.com/jsonline/about/reqinfo.aspx" target="_blank">Interested in becoming a CarSoup dealer?</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_11 last"><a href="http://www.jsonline.com/wheels/reviews/">Auto Reviews</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_4 tab-15 sub"> |
|
|
|
|
| <a href="http://www.jsonline.com/homes" id="hh_home_nav">Homes For Sale</a> |
| |
| <ul class="sub"> |
|
|
|
|
|
|
|
|
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/homes">Search Sales</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_2"><a href="http://www.jsonline.com/rentals">Search Rentals</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_3"><a href="http://www.jsonline.com/newhomes">New Homes Showcase</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_4"><a href="http://realestate.jsonline.com/associates/usa">Agent Directory</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_5"><a href="http://realestate.jsonline.com/sales/wi-usa/yes-openhouse">Open Houses</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_6"><a href="http://www.jsonline.com/foreclosures">Foreclosures</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_7"><a href="http://www.interest.com/?pid=i_MIL" target="_blank">Mortgage Rates</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_8 last"><a href="https://secure.adpay.com/AdEntry.aspx?catid=SW%20Merchandise&procid=32e6d1f1-2c27-443a-9bb2-ff5461de5b06" target="_blank">Place an Ad</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="odd pos_5 tab-16 sub"> |
|
|
|
|
| <a href="http://www.jsonline.com/rentals" id="hh_home_nav">Rentals</a> |
| |
| <ul class="sub"> |
|
|
|
|
|
|
|
|
| <li class="odd pos_1 first"><a href="http://www.jsonline.com/homes">Search Sales</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_2"><a href="http://www.jsonline.com/rentals">Search Rentals</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_3"><a href="http://www.jsonline.com/newhomes">New Homes Showcase</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_4"><a href="http://realestate.jsonline.com/associates/usa">Agent Directory</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_5"><a href="http://realestate.jsonline.com/sales/wi-usa/yes-openhouse">Open Houses</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_6"><a href="http://www.jsonline.com/foreclosures">Foreclosures</a></li> |
|
|
|
|
|
|
|
|
| <li class="odd pos_7"><a href="http://www.interest.com/?pid=i_MIL" target="_blank">Mortgage Rates</a></li> |
|
|
|
|
|
|
|
|
| <li class="even pos_8 last"><a href="https://secure.adpay.com/AdEntry.aspx?catid=SW%20Merchandise&procid=32e6d1f1-2c27-443a-9bb2-ff5461de5b06" target="_blank">Place an Ad</a></li> |
| </ul> |
| </div> |
|
|
|
|
|
|
| |
| <div class="even pos_6 tab-17 sub"> |
| <ul class="sub"> |
|
|
|
|
|
|
| |
| <li class="odd pos_1 first"><a href="http://www.milwaukeemarketplace.com/businesses/127595378.html" target="_blank">Business Listings</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_2"><a href="http://www.milwaukeemarketplace.com/specialsections/" target="_blank">Special Sections</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_3"><a href="http://www.jsonline.com/classified">Classified Ads</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_4"><a href="http://print.coupons.com/alink.asp?go=13326mr2210" target="_blank">Coupons</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_5"><a href="http://www.jsonline.com/tickets">Tickets</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_6"><a href="http://jsonline.upickem.net/engine/Splash.aspx?contestid=34988" target="_blank">DealWatch</a></li> |
|
|
|
|
|
|
| |
| <li class="odd pos_7"><a href="http://www.jsonline.com/business/pressrelease/">Press Releases</a></li> |
|
|
|
|
|
|
| |
| <li class="even pos_8 last"><a href="http://www.jsonline.com/holidayguide">Holiday Guide</a></li> |
|
|
| </ul> |
| </div> |
| </div> |
|
|
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.hoverintent.js"></script> |
| <script type="text/javascript"> |
| //<![CDATA[ |
| $(document).ready(function () { |
| var navigation = $("#jsonline-navigation"); |
|
|
| try { |
| if ($(navigation).attr("class") == undefined) { |
| //displayNavInfo("1", "jsonline-navigation: navigation doesn't have class attribute"); |
| $(navigation).addClass("tab-1"); |
| //displayNavInfo("", "jsonline-navigation: default class attribute (tab-1) added"); |
| } |
| } |
| catch (err) { |
| displayNavError("1", "jsonline-navigation: attempt to add default class attribute (tab-1) failed", err); |
| } |
|
|
| try { |
| // obtain initial navigation class |
| // $(navigation).attr("class"): "tab-1" |
| var initialNavigationClasses = $(navigation).attr("class").split(" "); |
|
|
| for (i = 0; i < initialNavigationClasses.length; i++) { |
| if (initialNavigationClasses[i].substr(0, 4) == "tab-") { |
| var initialNavigationClass = initialNavigationClasses[i]; |
|
|
| break; |
| } |
| } |
| } |
| catch (err) { |
| //var initialNavigationClass = "tab-1"; |
| displayNavError("2", "jsonline-navigation: initialNavigationClasses", err); |
| } |
|
|
| try { |
| // /$(navigation).find(".tabs ul li.selected"): "odd pos_7 tab-7 selected" |
| if ($(navigation).find(".tabs ul li.selected").length > 0) // tab initially selected |
| { |
| // obtain initially selected tab class |
| var initialTabClasses = $(navigation).find(".tabs ul li.selected").attr("class").split(" "); |
|
|
| for (i = 0; i < initialTabClasses.length; i++) { |
| if (initialTabClasses[i].substr(0, 4) == "tab-") { |
| var initialTabClass = initialTabClasses[i]; // "tab-7" |
|
|
| break; |
| } |
| } |
| } // end of check for initial tab class |
| } |
| catch (err) { |
| //var initialTabClass = = "tab-1"; |
| displayNavError("3", "jsonline-navigation: initialTabClasses", err); |
| } |
|
|
| try { |
| if ($(navigation).find(".sub.selected").length > 0) // sub initially selected |
| { |
| // obtain initially selected sub class |
| // $(navigation).find(".sub.selected").attr("class"): "odd pos_7 tab-7 sub selected" |
| var initialSubClasses = $(navigation).find(".sub.selected").attr("class").split(" "); |
|
|
| for (i = 0; i < initialSubClasses.length; i++) { |
| if (initialSubClasses[i].substr(0, 4) == "tab-") { |
| var initialSubClass = initialSubClasses[i]; |
|
|
| break; |
| } |
| } |
| } // end of check for initial sub class |
| } |
| catch (err) { |
| displayNavError("4", "jsonline-navigation: initialSubClasses", err); |
| } |
|
|
| // initial class |
| var initialClass = ""; |
|
|
| if (initialTabClass != undefined) // if tab initially selected |
| { |
| initialClass = initialTabClass; |
| } |
| else // if no tab initially selected, use initially selected sub class |
| { |
| initialClass = initialSubClass; |
| } |
| //displayNavInfo("2", "initialNavigationClass = '" + initialNavigationClass + "'\t|\tinitialTabClass = '" + initialTabClass + "'\t|\tinitialSubClass = '" + initialSubClass + "'\t|\tinitialClass = '" + initialClass + "'"); |
|
|
| // sub navigation |
| $(navigation).find(".tabs ul li").hoverIntent({ |
| sensitivity: 7, |
| interval: 100, |
| over: function () { |
|
|
| try { |
| if ($(navigation).attr("class") == undefined) { |
| //displayNavInfo("3", "hoverIntent OVER: navigation doesn't have class attribute"); |
| } |
| } catch (err) { } |
|
|
| try { |
| // obtain current navigation class |
| var navigationClasses = $(navigation).attr("class").split(" "); |
|
|
| for (i = 0; i < navigationClasses.length; i++) { |
| if (navigationClasses[i].substr(0, 4) == "tab-") { |
| var navigationClass = navigationClasses[i]; |
|
|
| break; |
| } |
| } |
| } |
| catch (err) { |
| displayNavError("5", "hoverIntent OVER: navigationClasses", err); |
| } |
|
|
| try { |
| // obtain current tab class |
| var tabClasses = $(this).attr("class").split(" "); |
|
|
| for (i = 0; i < tabClasses.length; i++) { |
| if (tabClasses[i].substr(0, 4) == "tab-") { |
| var tabClass = tabClasses[i]; |
|
|
| break; |
| } |
| } |
| } |
| catch (err) { |
| displayNavError("6", "hoverIntent OVER: tabClasses", err); |
| } |
|
|
|
|
| //displayNavInfo("4", "navigationClass = '" + navigationClass + "'\t|\ttabClass = '" + tabClass + "'"); |
|
|
| try { |
| // remove current navigation class |
| $(navigation).removeClass(navigationClass); |
|
|
| // add current tab class to navigation |
| $(navigation).addClass(tabClass); |
|
|
| // remove "selected" class from tab elements |
| $(navigation).find(".tabs ul li.selected").removeClass("selected"); |
|
|
| // add "selected" class to current tab element |
| $(this).addClass("selected"); |
|
|
| // remove "selected" class from sub elements |
| $(navigation).find(".sub.selected").removeClass("selected"); |
|
|
| // add "selected" class to selected sub element |
| $(navigation).find(".sub." + tabClass).addClass("selected"); |
|
|
| //displayNavInfo("5", "EVENT: hoverIntent OVER"); |
| } |
| catch (err) { |
| displayNavError("7", "hoverIntent OVER: general", err); |
| } |
|
|
| }, // end of over |
| timeout: 200, |
| out: function () { } |
| }); // end of hoverIntent() |
|
|
| // cleanup classes when not focused on navigation |
| $(navigation).hoverIntent({ |
| sensitivity: 7, |
| interval: 100, |
| over: function () { }, |
| timeout: 5000, |
| out: function () { |
| |
| try { |
| if ($(navigation).attr("class") == undefined) { |
| //displayNavInfo("6", "hoverIntent OUT: navigation doesn't have class attribute"); |
| } |
| } catch (err) { } |
| |
| try { |
| // obtain current navigation class |
| var navigationClasses = $(navigation).attr("class").split(" "); |
|
|
| for (i = 0; i < navigationClasses.length; i++) { |
| if (navigationClasses[i].substr(0, 4) == "tab-") { |
| var navigationClass = navigationClasses[i]; |
|
|
| break; |
| } |
| } |
| } |
| catch (err) { |
| displayNavError("8", "hoverIntent OUT: navigationClasses", err); |
| } |
|
|
| //displayNavInfo("7", "navigationClass = '" + navigationClass + "'"); |
|
|
| try { |
| // remove current navigation class |
| $(navigation).removeClass(navigationClass); |
|
|
| // add initial class to navigation |
| $(navigation).addClass(initialClass); |
|
|
| // remove "selected" class from tab elements |
| $(navigation).find(".tabs ul li.selected").removeClass("selected"); |
|
|
| if (initialTabClass != undefined) // if tab initially selected |
| { |
| // add "selected" class to initial tab element |
| $(navigation).find(".tabs ul li." + initialClass).addClass("selected"); |
| } |
|
|
| // remove "selected" class from sub elements |
| $(navigation).find(".sub.selected").removeClass("selected"); |
|
|
| // add "selected" class to initial sub element |
| $(navigation).find(".sub." + initialClass).addClass("selected"); |
|
|
| //displayNavInfo("8", "EVENT: hoverIntent OUT"); |
| } |
| catch (err) { |
| displayNavError("9", "hoverIntent OUT: general", err); |
| } |
| } // end of out |
| }); // end of hoverIntent() |
| }); |
|
|
| function displayNavError(identifier, text, err) { |
| try { |
| if (console && console.log) { |
| if (navigator.userAgent.toLowerCase().indexOf("firefox") != -1) { |
| console.log("%c-- %s --\t %s ERROR: %o", "color:red; background-color:yellow", identifier, text, err); |
| } else { |
| console.log("-- %d --\t %s ERROR: %o", identifier, text, err); |
| } |
| } |
| } |
| catch (err) { } |
| } |
|
|
| function displayNavInfo(identifier, text) { |
| try { |
| if (console && console.log) { |
| if (navigator.userAgent.toLowerCase().indexOf("firefox") != -1) { |
| console.log("%c-- %s --\t %s", "color:white; background-color:blue;", identifier, text) |
| } else { |
| console.log("-- %s --\t %s", identifier, text); |
| } |
| } |
| } |
| catch (err) { } |
| } |
| //]]> |
| </script> |
| |
| <div class="contentblock"> |
|
|
| |
|
|
| <div> <div id="pw" class="p_d"> |
| <div class="p_d_w"> |
| <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo_journalsentinel.png" class="dialog_logo_js"> |
| <h3>You have 15 free articles remaining this month.</h3> |
| <div class="dialog_text"> |
| <p>The Milwaukee Journal Sentinel now is offering JS Everywhere, a new digital subscription package, which gives you unlimited access to JSOnline, the daily e-Edition, Journal Sentinel mobile site and content previously included in Packer Insider. Also coming soon, an iPad tablet app will be part of JS Everywhere.</p> |
| <p>With JS Everywhere, you'll be able to read as many articles as you want, wherever you want, on any digital device you choose.</p> |
| <p>If you're a print subscriber, you already are entitled to free access to JS Everywhere. All you need to do is register.</p> |
| <p>Sign up now or continue enjoying up to 20 free articles per month.</p> |
| </div> |
| <div class="button_row"> |
| <div class="d_l_c subscription_button"> |
| <span class="note">current subscribers</span> |
| <a href="http://www.jsonline.com/subscription/register" rel="nofollow" class="d_b sub" target="_mjsservices" id="reg1">Register me</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <span class="note">not a subscriber?</span> |
| <a href="http://www.jsonline.com/subscription/subscribe" rel="nofollow" class="d_b sub" target="_mjsservices id=" new1""="">See my options</a> |
| </div> |
| <div class="d_r_c subscription_button"> |
| <span class="note"></span> |
| <a href="http://www.jsonline.com/news/milwaukee/29431599.html#continue_reading" rel="nofollow" class="d_b pcdb">No thanks</a> |
| </div> |
| </div> |
| <div class="subscription_footer">Already registered for JS Everywhere? <a rel="nofollow" class="d_b pgldb showlogin" target="_blank">Log in.</a> |
| |
| </div> |
| </div> |
| </div> |
| <div id="pwb" class="p_d"> |
| <div class="p_d_w"> |
| <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo_journalsentinel.png" class="dialog_logo_js"> |
| <h3>You have 5 free articles remaining this month.</h3> |
| <div class="dialog_text"> |
| <p>A JS Everywhere digital subscription gives you unlimited access to every article you want to read. To continue reading without further delay, sign up and enjoy more than the next five articles.</p> |
| <p>If you're a print subscriber, please register now at no additional charge and continue reading without further interruption.The daily e-Edition, Journal Sentinel mobile site and content previously included in Packer Insider is part of JS Everywhere.</p> |
| </div> |
| <div class="button_row"> |
| <div class="d_l_c subscription_button"> |
| <span class="note">current subscribers</span> |
| <a href="http://www.jsonline.com/subscription/register" rel="nofollow" class="d_b sub" target="_mjsservices" id="reg2">Register me</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <span class="note">not a subscriber?</span> |
| <a href="http://www.jsonline.com/subscription/subscribe" rel="nofollow" class="d_b sub" target="_mjsservices" id="new2">See my options</a> |
| </div> |
| <div class="d_r_c subscription_button"> |
| <span class="note"></span> |
| <a href="http://www.jsonline.com/news/milwaukee/29431599.html#continue_reading" rel="nofollow" class="d_b pcdb">No thanks</a> |
| </div> |
| </div> |
| <div class="subscription_footer">Already registered for JS Everywhere? <a rel="nofollow" class="d_b pgldb shologin" target="_blank">Log in.</a> |
| |
| </div> |
| </div> |
| </div> |
| <div id="plsd" class="p_d"> |
| <div class="p_d_w"> |
| <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo_journalsentinel.png" class="dialog_logo_js"> |
| <div class="subscription_login_form"> |
| <h3>Log in</h3> |
| <div class="d_l_c"> |
| <div id="plfic_frame"></div> |
| </div> |
| </div> |
| <div class="signup_prompt"> |
| <h3>Log in now to JS Everywhere.</h3> |
| <div class="dialog_text"> |
| <p>You've reached your 20-article limit for this month. With JS Everywhere digital package, you gain unlimited access. Everywhere you go, and with every digital device you own. And, new mobile and tablet apps are coming soon.</p> |
| <p>If you already are a print subscriber, register now. Or sign up as a digital-only subscriber today, and start enjoying all of our digital content, with unlimited access to JSOnline, e-Editions, Journal Sentinel mobile site and content previously included in Packer Insider.</p> |
| <p>If you don't receive home delivery, maybe now's the time to subscribe. We offer a variety of print subscriptions to choose from, and each includes unlimited digital access at no additional cost.</p> |
| </div> |
| <div class="button_row"> |
| <div class="d_l_c subscription_button"> |
| <span class="note">current subscribers</span> |
| <a href="http://www.jsonline.com/subscription/register" rel="nofollow" class="d_b sub" target="_mjsservices" id="reg3">Register me</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <span class="note">not a subscriber?</span> |
| <a href="http://www.jsonline.com/subscription/subscribe" rel="nofollow" class="d_b sub" target="_mjsservices" id="new3">See my options</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <span class="note"></span> |
| <a href="http://www.jsonline.com/news/milwaukee/29431599.html#" class="d_b pgldh">No thanks</a> |
| </div> |
| </div> |
| <div class="subscription_footer"> |
| <a rel="nofollow" href="https://www.subscriber-service.com/mjs/logon.asp" target="_blank">forgot username/password?</a> |
| </div> |
| </div> |
| |
| |
| |
| |
| </div> |
| </div> |
| <div id="pwl" class="p_d"> |
| <div class="p_d_w"> |
| <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo_journalsentinel.png" class="dialog_logo_js"> |
| <h3>We hope you enjoyed reading 20 articles this month.</h3> |
| <div class="dialog_text"> |
| <p>Sign up now for unlimited reading and browsing or you can continue browsing our homepage, section pages, TAP, sports statistics, Car Soup, House & Home, classified ads andClassified and death notices on JSOnline. However for complete site access, sign up for JS Everywhere now. You'll get unlimited digital access instantly!</p> |
| <p>Remember, all Journal Sentinel print subscriptions include JS Everywhere, which delivers free, unlimited access to digital news and information wherever you are – on any digital device you choose.</p> |
| <p>To keep reading, sign up today.</p> |
| </div> |
| <div class="button_row"> |
| <div class="d_l_c subscription_button"> |
| <a href="http://www.jsonline.com/subscription/register" rel="nofollow" class="d_b sub" target="_mjsservices">Register me</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <a href="http://www.jsonline.com/subscription/subscribe" rel="nofollow" class="d_b sub" target="_mjsservices">See my options</a> |
| </div> |
| <div class="d_r_c subscription_button"> |
| <a href="http://www.jsonline.com/" rel="nofollow" class="d_b sub">Go to homepage</a> |
| </div> |
| </div> |
| <div class="subscription_footer"> |
| Already registered for JS Everywhere? <a rel="nofollow" class="d_b pgldb shologin" target="_blank">Log in.</a> |
| </div> |
| </div> |
| </div> |
| <div id="tplsd" class="p_d"> |
| <div class="p_d_w"> |
| <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo_journalsentinel.png" class="dialog_logo_js"> |
| <div class="subscription_login_form"> |
| <h3>Log in</h3> |
| <div class="d_l_c"> |
| <div id="tplfic_frame"></div> |
| </div> |
| </div> |
| <div class="signup_prompt"> |
| <h3>Log in now to JS Everywhere.</h3> |
| <div class="dialog_text"> |
| <p>With JS Everywhere digital package, you gain unlimited access. Everywhere you go, and with every digital device you own. And, new mobile and tablet apps are coming soon.</p> |
| <p>If you already are a print subscriber, register now. Or sign up as a digital-only subscriber today, and start enjoying all of our digital content, with unlimited access to JSOnline, e-Editions, Journal Sentinel mobile site and content previously included in Packer Insider.</p> |
| <p>If you don't receive home delivery, maybe now's the time to subscribe. We offer a variety of print subscriptions to choose from, and each includes unlimited digital access at no additional cost.</p> |
| </div> |
| <div class="button_row"> |
| <div class="d_l_c subscription_button"> |
| <span class="note">current subscribers</span> |
| <a href="http://www.jsonline.com/subscription/register" rel="nofollow" class="d_b sub" target="_mjsservices" id="regD">Register me</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <span class="note">not a subscriber?</span> |
| <a href="http://www.jsonline.com/subscription/subscribe" rel="nofollow" class="d_b sub" target="_mjsservices" id="newD">See my options</a> |
| </div> |
| <div class="d_l_c subscription_button"> |
| <span class="note"></span> |
| <a href="http://www.jsonline.com/news/milwaukee/29431599.html#" class="d_b pcdb">No thanks</a> |
| </div> |
| </div> |
| <div class="subscription_footer"> |
| <a rel="nofollow" href="https://www.subscriber-service.com/mjs/logon.asp" target="_blank">forgot username/password?</a> |
| </div> |
| </div> |
| |
| |
| |
| |
| </div> |
| </div> |
| </div> |
| <link rel="stylesheet" type="text/css" href="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/021906E80800E73O20120219060219"> |
| <script type="text/javascript"> |
| $.ajax({url: 'http://www.jsonline.com/19022012021906Q50O5E0E7O29431599.CTV',dataType: "script",success: function(){}}); |
| </script> |
|
|
|
|
|
|
| <div align="center" id="peelad"> |
|
|
|
|
|
|
|
|
| </div> |
| <div id="hotTopics"> |
| <form action="http://search.jsonline.com/Search.aspx" method="get"> |
| <div class="hotTopics"> |
| <div class="links" id="hotTopicsLinks"> |
| <span class="label">Hot Topics:</span> |
| <a href="http://www.jsonline.com/entertainment/musicandnightlife/whitney19-fb485fo-139531623.html">Whitney Houston's funeral</a> |
| |
| |<a href="http://hosted.ap.org/interactives/2012/gas-prices/?site=wimil">Gas prices</a> |
| |
| |<a href="http://www.jsonline.com/blogs/sports/139562748.html">Stephen Jackson</a> |
| |
| |<a href="http://www.jsonline.com/news/opinion/russell-walkers-wild-card-ng463n8-139551498.html">Walker's wild card</a> |
| |
| </div> |
| <div class="searchForm" id="mainSearchForm"> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.autocomplete.js"></script> |
| <input type="text" name="k" id="searchInput" style="margin-right:4px;" onfocus="this.style.border='0px solid white'" autocomplete="off" class="ac_input"> |
| <input type="image" class="button" name="s" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/btn_Search_JSO.gif" alt="Search"> |
| </div> |
| <script> |
| $(document).ready(function () { |
| var data = "Core Selectors Attributes Traversing Manipulation CSS Events Effects Ajax Utilities".split(" "); |
| $("#searchInput").autocomplete("http://www.jsonline.com/templates/JI.Core.API.AutoComplete.txt", { delay: 50 }); |
| }); |
| </script> |
| </div> |
| </form> |
|
|
|
|
|
|
| </div> |
|
|
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| <div class="left_column"> |
| |
| <div class="page_header"> |
| <div class="breadcrumb"> |
|
|
|
|
|
|
|
|
| |
| <div class="odd pos_false block ad Yahoo id63846102 size88x31"> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("vcf3_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
| <a href="http://www.jsonline.com/">Home</a> |
|
|
| » |
| <a href="http://www.jsonline.com/news">News</a> |
|
|
| » |
| <a href="http://www.jsonline.com/news/milwaukee">Milwaukee County</a> |
| </div> |
| <a href="http://www.jsonline.com/rss?c=y&path=/news/milwaukee"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/feed-icon-16x16_JSO.gif" border="0" height="16" width="16"></a> <h2>Milwaukee County </h2> |
| </div> |
|
|
| |
| |
| |
| <div class="main_article hnews hentry item" id="mainContent"> |
| <span fd-type="start" fd-id="default"></span> |
| |
| |
| |
| |
| <div class="columnist_container"> |
| <div class="columnist_mug"> |
| <div class="columnist_link"> |
| <a href="mailto:JSTINGL@journalsentinel.com" target="_blank">E-mail</a> |
| </div> |
| <img class="floatLeft" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Column+Header+-+Stingle.gif" width="91" height="64" alt="" title="" border="0"> |
| <h2 class="columnist_name floatLeft">Jim Stingl | <span>In My Opinion</span></h2> |
| </div> |
| </div> |
| <br class="clear"> |
| |
| |
| |
| <div id="fb-root"></div> |
| <script src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/all(1).js"></script> |
| <script> |
| FB.init({ |
| appId : '114161048613011', |
| channelUrl : 'http://www.jsonline.com/templates/channel.html' // custom channel |
| }); |
| </script> |
| <div id="social_media"> |
| <div id="main_media" style="height:23px;"> |
| <div id="facebook_link"> |
| <script src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/all(2).js"></script><fb:like layout="button_count" show_faces="false" width="125" action="recommend" font="verdana" class=" fb_edge_widget_with_comment fb_iframe_widget"><span><iframe id="f3102f9e54" name="f12e8fb8dc" scrolling="no" style="overflow-x: hidden; overflow-y: hidden; height: 20px; width: 130px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-image: initial; " title="Like this content on Facebook." class="fb_ltr" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/like.htm"></iframe></span></fb:like> |
| </div> |
| |
| <div id="twitter_link"> |
| <iframe allowtransparency="true" frameborder="0" scrolling="no" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/tweet_button.1329368159.htm" class="twitter-share-button twitter-count-horizontal" style="height: 20px; width: 110px; " title="Twitter Tweet Button"></iframe><script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/widgets.js"></script> |
| </div> |
| </div> |
| <div id="alternate_media" class="blogs"> |
| <ul> |
| <li class="blogs_share">Share</li> |
| <li class="blogs_redit"> |
| <a class="omniture_link_tracking" title="reddit" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html%3Freferrer=reddit&title=Discovery+satisfies+thirst+for+knowledge+about+soldier"></a> |
| </li> |
| <li class="blogs_delicious"> |
| <a class="omniture_link_tracking" title="Delicious" target="_blank" href="http://delicious.com/save?v=5&noui&jump=close&url=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html%3Freferrer=delicious&title=Discovery+satisfies+thirst+for+knowledge+about+soldier"></a> |
| </li> |
| <li class="blogs_newsvine"> |
| <a class="omniture_link_tracking" title="Newsvine" target="_blank" href="http://www.newsvine.com/_wine/save?popoff=1&u=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html%3Freferrer=newsvine"></a> |
| </li> |
| <li class="blogs_digg"> |
| <a class="omniture_link_tracking" title="Digg" target="_blank" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html%3Freferrer=digg&title=Discovery+satisfies+thirst+for+knowledge+about+soldier&bodytext={teaser}"></a> |
| </li> |
| <li class="blogs_technorati"> |
| <a class="omniture_link_tracking" title="Technorati" target="_blank" href="http://technorati.com/faves?sub=addfavbtn&add=url=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html%3Freferrer=technorati"></a> |
| </li> |
| <li class="blogs_mixx"> |
| <a class="omniture_link_tracking" title="Mixx" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html&page_title=Discovery+satisfies+thirst+for+knowledge+about+soldier"></a> |
| </li> |
| </ul> |
| </div> |
| </div> |
| |
|
|
| <h1 class="headline entry-title">Discovery satisfies thirst for knowledge about soldier</h1> |
|
|
|
|
|
|
| |
| <div class="byline"> |
| |
| <script language="javascript1.2">var trkcid=29431599;var partnerID=380769; var _hb=1;</script><script language="javascript1.2" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/button_1.js"></script><script language="JavaScript"> |
| window.onerror=function(){clickURL=document.location.href;return true;} |
| if(!self.clickURL) clickURL=parent.location.href; |
| </script> |
|
|
| <div id="print_email" class="tools" style="position:relative;top:-6px"> |
| <ul> |
| <li class="tools_email"> |
| <a class="omniture_link_tracking" href="http://www.jsonline.com/news/milwaukee/29431599.html#" onclick="return(ET());" onmouseover="return(ETMouseOver());" onmouseout="return(ETMouseOut());">e-mail</a> |
| </li> |
| <li class="tools_print"> |
| <a class="omniture_link_tracking" href="http://www.jsonline.com/news/milwaukee/29431599.html#" onclick="return(PT());" onmouseover="return(PTMouseOver());" onmouseout="return(PTMouseOut());">print</a> |
| </li> |
| </ul> |
| </div> |
| |
|
|
|
|
| By <span class="author vcard"><span class="fn">JIM STINGL</span></span> |
| </div> |
| |
| <div class="entry-content"> |
| |
| <p class="storyTimestamp "><span class="updated" title="2008-10-14T06:35:00Z"><span class="timestamp">April 6, 2008</span></span> |<span class="comments"><a href="http://www.jsonline.com/news/milwaukee/29431599.html?page=1">(0) Comments</a></span></p> |
| |
|
|
|
|
|
|
| <div class="collateral_article_content"> |
| <div class="sidebar"> |
| |
| |
|
|
|
|
|
|
| <div class="side_section_container graphic"> |
| <div class="side_container_01"> |
| |
| <div class="side_container_01_content"> |
| |
| <table border="0" cellpadding="0" cellspacing="0"> |
| <tbody><tr> |
| <td> |
| |
| |
| |
| |
|
|
|
|
| <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/stincol_040608_big.jpg" width="185" height="131" alt="" title="" border="0"> |
| </td> |
| </tr> |
| <tr><td class="credit"> |
| Karen Sherlock |
| </td></tr> |
| </tbody></table> |
| |
| <div class="caption">Bob Schwartz (left) receives his great-uncle George Weiland's canteen from World War II. Randy VanDyken (right) found it on a Pacific Island where Weiland was killed in 1944.</div> |
| </div> |
| </div> |
| </div> |
|
|
|
|
|
|
| </div> |
| </div> |
| |
|
|
|
|
|
|
|
|
| <p>The water canteen that sustained U.S. Marine Pvt. George Weiland until the day he was killed on a Pacific Island during World War II found its way home to Milwaukee Friday.</p> |
| |
| |
|
|
|
|
|
|
| <p>Bob Schwartz, Weiland's great-nephew, held the canteen in his hands and squinted at where the soldier had scratched his name into the metal.</p> |
| |
| |
|
|
|
|
|
|
| <p>"I can see it right here," he said.</p> |
| |
| |
|
|
|
|
|
|
| <p>"G.R. Weiland."</p> |
| |
| |
|
|
|
|
|
|
| <p>He died Oct. 4, 1944, during an ambush and furious firefight with the Japanese on Peleliu, one of the Palau Islands. On that same date 22 years later, Schwartz was born. </p> |
| |
| |
|
|
|
|
|
|
| <p>A software engineering manager and self-proclaimed World War II geek who collects wings and badges from that era, Schwartz didn't learn about his great uncle until 2000. Since then, he has tried to satisfy his growing curiosity about the man who died at age 19 trying to take the generically named Hill 120.</p> |
| |
| |
|
|
|
|
|
|
| <p>Last month, he received a startling e-mail in Madison, where he lives. A Michigan man named Randy VanDyken, also a WWII buff, had found the canteen and attached cup while exploring on Peleliu.</p> |
| |
| |
|
|
|
|
|
|
| <p>VanDyken offered to drive here and give it to him. They met Friday evening at Mader's restaurant.</p> |
| |
| |
|
|
|
|
|
|
| <p>VanDyken also handed Schwartz a bag of sand he collected from the beach where Weiland's platoon came ashore. Passing along these keepsakes was a thrill and an honor, he said.</p> |
| |
| |
|
|
|
|
|
|
| <p>"I know it has to come as a complete shock to the family to have a complete stranger call them and say that they have found a personal item halfway around the world in the jungle after 65 years," he said.</p> |
| |
| |
|
|
|
|
|
|
| <p>Yes, Schwartz would agree, but a very welcome shock.</p> |
| |
| |
|
|
|
|
|
|
| <p>"To be able to have something that belonged to a family member from the war is incredible. All of my wings are period wings, but I don't know who owned any of them," he said.</p> |
| |
| |
|
|
|
|
|
|
| <p>"It's just a miraculous story," said Pat Schwartz, who is Bob's mother and a niece of George Weiland. She was at Mader's for the meeting along with her husband, Jim, as well as VanDyken's wife, Toni, and their daughter and son-in-law, Alison and Steve Wolfe, who live here in Bay View.</p> |
| |
| |
|
|
|
|
|
|
| <p>Weiland, the youngest of seven children, grew up on Milwaukee's south side and went to Pulaski High School. In 1942, at age 17, he joined the Marine Corps. About the only personal item Schwartz had from his great-uncle until now was a Christmas card he sent to his sister from military training in California. "Love George," it's signed.</p> |
| |
| |
|
|
|
|
|
|
| <p>He hit the beach of Peleliu on Sept. 17, 1944, in 115-degree heat, and less than three weeks later, he was dead. Schwartz said he learned from the Marines that Weiland was manning a machine gun and trying to provide cover for his buddies when he was hit by a mortar round. He earned the Silver Star and Purple Heart, but those medals have disappeared over the years.</p> |
| |
| |
|
|
|
|
|
|
| <p>Weiland is buried in the Philippines along with many of the nearly 1,500 American soldiers killed in the Battle of Peleliu. History has raised serious questions about whether the battle provided any strategic advantage and needed to be fought at all.</p> |
| |
| |
|
|
|
|
|
|
| <p>VanDyken, 57, a Navy Vietnam veteran who lives near Grand Rapids and owns a mechanical contracting company, has explored several Pacific Islands and their battlefields. He has found about 20 mostly unmarked canteens over the years and hopes to return one to an Oregon family this summer.</p> |
| |
| |
|
|
|
|
|
|
| <p>The area where he found Weiland's canteen and a few others is extremely rugged and rarely visited by anyone. It was only after he got the canteen home and had a chance to wash off years of dirt and vegetation stains that he spotted the name. It was the only canteen that had the cup and handle assembly with it.</p> |
| |
| |
|
|
|
|
|
|
| <p>Schwartz has created a Web site devoted to aviation wings and badges, and he dedicated the site to Weiland. That's how VanDyken found him through an Internet search.</p> |
| |
| |
|
|
|
|
|
|
| <p>VanDyken knows Weiland is buried far away, but he sees the return of the canteen as a sort of homecoming.</p> |
| |
| |
|
|
|
|
|
|
| <p>"It's a closing of one of life's circles brought about by the grace of God. When you have walked the ground where he fought and gave his life, I just cannot come up with a better explanation," he said.</p> |
| |
| |
|
|
|
|
|
|
| <p>Schwartz thanked VanDyken and said he would treasure the canteen and pass it along to his son someday.</p> |
| |
| |
|
|
|
|
|
|
| <p>Schwartz's mother told him that because he was born on Oct. 4, his grandmother believed a special connection of some type linked him to his late great-uncle George.</p> |
| |
| |
|
|
|
|
|
|
| <p>"I have a feeling," he said, "somewhere in heaven she is smiling right now with a 'See, I told you so,' look on her face."</p> |
| |
| |
|
|
|
|
|
|
| <p><i>Call Jim Stingl at (414) 224-2017 or e-mail at <a href="mailto:jstingl@journalsentinel.com" target="_blank">jstingl@journalsentinel.com</a></i></p> |
| |
| |
| </div> |
| |
| |
|
|
| |
| <div class="undecorated_side_container"> |
| |
| <script type="text/javascript">adsonar_placementId=1519807;adsonar_pid=527757;adsonar_ps=25358229;adsonar_zw=600;adsonar_zh=150;adsonar_jv='ads.adsonar.com';</script><script language="JavaScript" src="http://js.adsonar.com/js/adsonar.js"></script> |
| </div> |
| |
| |
|
|
| |
|
|
| |
| |
|
|
| <p style="display:none"><a href="http://www.jsonline.com/copyright.html" rel="item-license">© 2012</a>, Journal Sentinel Inc. All rights reserved.</p> |
| </div> |
| |
| <span fd-type="end" fd-id="default"></span> |
| |
|
|
|
|
| <div id="comments" class="noindex"> |
| <div class="comments_link"> |
| <div class="comments_link_left"> |
| <p><a href="http://www.jsonline.com/news/milwaukee/29431599.html?page=1">0</a></p> |
| </div> |
| <div class="facebook_share" style="float:right;}> |
| <script src=" http:="" connect.facebook.net="" en_us="" all.js#xfbml="1""><fb:like show_faces="false" width="250" action="recommend" class=" fb_edge_widget_with_comment fb_iframe_widget"><span><iframe id="f3fe8c2d5c" name="faec98abc" scrolling="no" style="overflow-x: hidden; overflow-y: hidden; width: 265px; height: 28px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-image: initial; " title="Like this content on Facebook." class="fb_ltr" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/like(1).htm"></iframe></span></fb:like> |
| </div> |
| <div class="comments_link_right"> |
| <h3><a href="http://www.jsonline.com/news/milwaukee/29431599.html?page=1">Comments »</a></h3> |
| <p>Read and share your thoughts on this story.</p> |
| </div> |
| </div> |
| </div> |
| <style> |
| #comments .comments_link{padding: 10px 0 10px 0;font-size:1.2em;color:#666;height:100%;overflow:hidden;border:1px solid #D7D7D7;} |
| #comments .comments_link_left{float: left; width: 51px; height: 46px;margin:3px 10px 0 10px;background:url(http://media.journalinteractive.com/designimages/jso-square-comment-bubble.gif) no-repeat; } |
| #comments .comments_link_left p{color:#444444;font-family:Georgia,"Times New Roman",Times,serif;font-size:19px;font-weight:normal;padding:3px 0 0 0;text-align:center;} |
| #comments .comments_link_right{float: left;} |
| #comments .comments_link_right h3 {color:#444444;font-family:Georgia,"Times New Roman",Times,serif;font-size:19px;font-weight:normal;padding:0;text-align:left;margin:0;} |
| #content_container #nlWrap{background:#f9f9f9;margin-top:15px;} |
|
|
|
|
| </style> |
|
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <link href="http://www.jsonline.com/includes/nlStyle.css" rel="stylesheet"> |
| <div id="nlWrap" class="feature"> |
| <div class="nlList"> |
| <div class="nlLeft"><img alt="NewsWatch Delivered" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/logo_news.jpg" border="0"> </div> |
| <div class="nlRight"> |
| <h3>E-mail Newsletter</h3> |
| <p>The latest local news delivered to your inbox Monday-Friday during the 2 p.m. hour – or whenever there’s big breaking news.</p> |
| <div> |
| <p id="signupWidget"> |
| <input class="loggedout" type="text" id="signupAddress" style="width:175px;" value="enter your e-mail address" onfocus="this.value=''"> |
| <span class="loggedout"><input type="button" value="Sign Up Now!" onclick="register("Newsletter_NWD")"><br> |
| Enter your e-mail address above and click "Sign Up Now!" to begin receiving your e-mail newsletter</span> |
| <span class="loggedin"><a style="font-weight:bold" href="http://www.jsonline.com/news/milwaukee/29431599.html#" onclick="register("Newsletter_NWD");return false">Get the Newsletter!</a> </span> |
| </p> |
|
|
| </div> |
| <div class="loggedout"> |
| <a href="http://www.jsonline.com/s?action=login&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html">Login</a> or <a href="http://www.jsonline.com/s?action=reg&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html">Register</a> to manage all your newsletter preferences. |
| </div> |
| <div class="loggedin"> |
| <a href="http://www.jsonline.com/s?action=editReg&rurl=http%3A%2F%2Fwww.jsonline.com%2Fnews%2Fmilwaukee%2F29431599.html">Manage all your newsletter preferences.</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| <script type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Core.NewsletterSignup.js"> |
| </script> |
| <script type="text/javascript"> |
|
|
| function isValidEmail(address) { |
| var reg = /^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/; |
| return reg.test(address); |
| } |
| |
| function register(newsletter) |
| { |
| var address = document.getElementById("signupAddress").value |
| if((address == "") || !isValidEmail(address)) |
| { |
| alert("Please enter a valid e-mail address") |
| return; |
| } |
| updateNewsletter(address,newsletter,"signupWidget",true); |
| } |
| |
| function UpdateStatusChange(status) |
| { |
| if(status == "start") |
| { |
| document.getElementById(_container).innerHTML = "<img src='http://media.jsonline.com/designimages/waiting_indicator_JSO.gif'>" |
| } |
| else if(status == "false") |
| { |
| document.getElementById(_container).innerHTML = "<span style='color:red;font-weight:bold;margin-bottom:10px;'>We are unable to registeryou for the newsletter at this time.</span>" |
| } |
| else |
| { |
| document.getElementById(_container).innerHTML = "<span style='color:red;font-weight:bold;margin-bottom:10px;'>Congratulations, you are registered to receive NewsWatch Delivered!</span>" |
| } |
| } |
| |
| if((subcookiejar.fetch("curUserInfo", "email") != null) && (subcookiejar.fetch("curUserInfo", "email") != "" )) |
| { |
| document.getElementById("signupAddress").value = subcookiejar.fetch("curUserInfo", "email"); |
| } |
| </script> |
|
|
|
|
| |
|
|
|
|
| |
| <div class="more_top_stories"> <div class="title">Archives</div> |
| <ul class="dots_list red"> |
| <li> |
| <span class="timestamp">Feb. 18, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html">Love missives carry 'forever' postmark</a></li> |
| <li> |
| <span class="timestamp">Feb. 16, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/political-battle-has-scrambled-our-civility-p247lsl-139487788.html">Political battle has scrambled our civility</a></li> |
| <li> |
| <span class="timestamp">Feb. 14, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/so-who-says-its-national-bad-breath-awareness-month-rg46n1k-139335313.html">So who says it's National Bad Breath Awareness Month?</a></li> |
| <li> |
| <span class="timestamp">Feb. 11, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/league-aims-to-get-the-skeeball-rolling-here-dm44r22-139166439.html">League aims to get the Skeeball rolling here</a></li> |
| <li> |
| <span class="timestamp">Feb. 9, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/family-had-one-last-weekend-with-an-aging-friend-dm44qpc-139064514.html">Family had one last weekend with an aging friend</a></li> |
| <li> |
| <span class="timestamp">Feb. 6, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/couple-celebrates-80-years-of-compromising-qu43ef7-138829074.html">Couple celebrates 80 years of compromising</a></li> |
| <li> |
| <span class="timestamp">Feb. 4, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/uncanny-coincidences-let-mans-death-go-unnoticed-for-years-qs422uf-138727284.html">Uncanny coincidences let man's death go unnoticed for years</a></li> |
| <li> |
| <span class="timestamp">Feb. 2, 2012 |</span> |
| <a href="http://www.jsonline.com/news/wisconsin/campbellsport-inn-has-a-chance-of-a-ghost-qs41s8a-138618914.html">Campbellsport Inn has a chance of a ghost</a></li> |
| <li> |
| <span class="timestamp">Jan. 31, 2012 |</span> |
| <a href="http://www.jsonline.com/news/statepolitics/cant-wait-to-read-blockbuster-recall-petitions-0240rgu-138457109.html">Can't wait to read blockbuster recall petitions</a></li> |
| <li> |
| <span class="timestamp">Jan. 29, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/getting-mileage-out-of-snippets-of-news-ut3ve3l-138276139.html">Getting mileage out of snippets of news</a></li> |
| <li> |
| <span class="timestamp">Jan. 26, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/plaque-5t3v4pt-138172279.html">Clarity it may lack, but there’s something about this plaque</a></li> |
| <li> |
| <span class="timestamp">Jan. 24, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/stripping-away-my-assumptions-about-pole-dancing-7q3u45h-138018713.html">Stripping away my assumptions about pole dancing</a></li> |
| <li> |
| <span class="timestamp">Jan. 21, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/moms-diaries-are-time-capsule-of-happy-family-life-4h3sjbn-137831413.html">Mom's diaries are time capsule of happy family life</a></li> |
| <li> |
| <span class="timestamp">Jan. 19, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/a-cautionary-tale-of-strip-club-high-jinks-6e3s8eg-137726138.html">A cautionary tale of strip club high jinks</a></li> |
| <li> |
| <span class="timestamp">Jan. 18, 2012 |</span> |
| <a href="http://www.jsonline.com/news/wisconsin/fantasy-of-gorgeous-royal-miss-america-survives-into-21st-century-vm3r8n3-137548978.html">Fantasy of gorgeous, royal Miss America survives into 21st century</a></li> |
| <li> |
| <span class="timestamp">Jan. 15, 2012 |</span> |
| <a href="http://www.jsonline.com/news/waukesha/doctors-prescription-for-recovery-includes-finding-blessings-in-crash-fs3ppsn-137356943.html">Doctor's prescription for recovery includes finding blessings in crash</a></li> |
| <li> |
| <span class="timestamp">Jan. 13, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/some-are-game-for-name-change-me3pc9b-137263873.html">What’s in a name? You name it</a></li> |
| <li> |
| <span class="timestamp">Jan. 11, 2012 |</span> |
| <a href="http://www.jsonline.com/news/137072898.html">24 ways to know it's been a mild winter</a></li> |
| <li> |
| <span class="timestamp">Jan. 7, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/mso-plays-slapstick-for-state-tourism-pv3m80d-136882063.html">MSO performs slapstick for state tourism commercial</a></li> |
| <li> |
| <span class="timestamp">Jan. 5, 2012 |</span> |
| <a href="http://www.jsonline.com/news/milwaukee/elvis-emulators-follow-that-dream-to-milwaukee-nc3mkin-136789248.html">Elvis emulators follow that dream to Milwaukee</a></li> |
| </ul> |
| </div> |
| |
| |
| </div> |
| |
| <div class="right_column"> |
| <div class="noindex"> |
|
|
| |
| <div class="top_right_content contentblock" id="socialMediaTools"> |
| <div class="text_size right_float"> |
| TEXT SIZE <img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/text_size_JSO.gif"><a href="http://www.jsonline.com/news/milwaukee/29431599.html#" onclick="changeFontSize('mainContent','shrink'); return false"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/minus_button_JSO.gif" border="0"></a><a href="http://www.jsonline.com/news/milwaukee/29431599.html#" onclick="changeFontSize('mainContent','grow'); return false"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/plus_button_JSO.gif" border="0"></a> |
| </div> |
| </div> |
| |
| <script type="text/javascript"> |
| $(document).ready(function(){ |
| //link tracking |
| $("#socialMediaTools .omniture_link_tracking").each(function(){ |
| var link = $(this); |
| link.omniture_link_tracking({ |
| linkName:"SocialMediaTools (" + link.html() + ")", |
| getValue:function(element){ |
| return $(document).attr("title"); |
| } |
| }); |
| }); |
| }); |
| </script> |
| |
| |
| |
|
|
|
|
|
|
|
|
| |
| <div class="newswatch"> |
| <div class="newswatch_header"> |
| |
| <div class="newswatch_sponsor"> |
|
|
|
|
|
|
|
|
| |
| <div class="odd pos_1 first block ad Yahoo id57268202 size88x31"> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("newswatch_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
| </div> |
| </div> |
| <div class="newswatch_content"> |
| <div class="newswatch_scroller" id="newsWatchScroller" style="background-color: white; "> |
|
|
|
|
| |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139626813.html"> Man shot in leg; police investigating</a> |
| <span class="timestamp"> |
| 7:16 a.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139626743.html"> Forecast: Carbon copy of Saturday</a> |
| <span class="timestamp"> |
| 7:12 a.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock yesterday"> |
| <a href="http://www.jsonline.com/newswatch/139610963.html"> Barrett says he is considering challenging Walker in recall</a> |
| <span class="timestamp"> |
| Yesterday<br> |
| 11:20 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139602893.html"> Three dead, two injured in Fitchburg crash</a> |
| <span class="timestamp"> |
| 11:08 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139599493.html"> One snowmobiler dies after group plunges through ice on Beaver Dam Lake</a> |
| <span class="timestamp"> |
| 10:18 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139574583.html"> Man, 19, fatally shot in Cudahy</a> |
| <span class="timestamp"> |
| 10:12 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139593983.html"> Austin Straubel operations return to normal after bomb threat</a> |
| <span class="timestamp"> |
| 8:16 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139495518.html"> Golden Eagles win the power ball</a> |
| <span class="timestamp"> |
| 8:07 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139592163.html"> No extension talks yet between Marcum, Brewers</a> |
| <span class="timestamp"> |
| 7:23 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139531623.html"> Houston's voice closes emotional service</a> |
| <span class="timestamp"> |
| 6:00 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139586683.html"> Another $1 million lottery ticket sold in state</a> |
| <span class="timestamp"> |
| 4:22 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139585853.html"> Madison man was one of dwindling number of Buffalo Soldiers</a> |
| <span class="timestamp"> |
| 4:08 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139584524.html"> Plane runs out of fuel, lands beside road in Grant County</a> |
| <span class="timestamp"> |
| 3:38 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139537508.html"> Whitney Houston funeral coverage from around the Web</a> |
| <span class="timestamp"> |
| 2:43 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139579924.html"> Pedestrian hospitalized after east side accident</a> |
| <span class="timestamp"> |
| 2:08 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139575978.html"> Police in Superior kill robbery suspect who pointed gun</a> |
| <span class="timestamp"> |
| 2:04 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139578874.html"> Clear skies, high of 36 predicted</a> |
| <span class="timestamp"> |
| 1:58 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139577198.html"> Bucks ponder help at center spot</a> |
| <span class="timestamp"> |
| 12:57 p.m. |
| </span> |
| </p> |
|
|
|
|
|
|
| <p class="contentblock"> |
| <a href="http://www.jsonline.com/newswatch/139575588.html"> 'A Thousand Words' speaks volumes about art, realism</a> |
| <span class="timestamp"> |
| 11:35 a.m. |
| </span> |
| </p> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| </div> |
| <script language="javascript" type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_widget_NewsWatch.js"></script> |
| <script language="javascript" type="text/javascript"> window.setTimeout("getNewsWatch('http://www.jsonline.com/templates/JSO_Get_Newswatch_Items?')", 1000);;</script> |
| <div class="newswatch_links"> |
| </div> |
| <div class="newswatch_footer"> |
|
|
|
|
|
|
|
|
| |
| <div class="odd pos_1 first block ad Yahoo id91604104 size250x30"> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("nw_bot_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
| </div> |
| </div> |
| </div> |
| |
|
|
|
|
|
|
|
|
|
|
| |
| <div class="mid_right_content contentblock"> |
| <div> |
| |
|
|
|
|
|
|
| |
| <div class="odd pos_1 first block ad Yahoo id44004072 size300x250"> |
| <h4>advertisement</h4> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("bb_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
| </div> |
| <div class="right_float"> |
| |
|
|
|
|
|
|
| |
| <div class="odd pos_1 first block ad Yahoo id43463992 size160x600"> |
| <h4>advertisement</h4> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("ws_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
| </div> |
| |
|
|
| |
| <div class="sidebar_links_01"> |
| <div class="headline">top stories</div> |
| <ul class="dots_list red"> |
| |
| <li> |
| <a href="http://www.jsonline.com/watchdog/watchdogreports/painkiller-boom-fueled-by-networking-dp3p2rn-139609053.html">Painkiller boom fueled by networking</a> |
| </li> |
| |
| <li> |
| <a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html">Love missives carry 'forever' postmark</a> |
| </li> |
| |
| <li> |
| <a href="http://www.jsonline.com/news/education/report-suggests-schools-improve-after-some-students-leave-gk482a2-139606983.html">Report suggests schools improve after some students leave</a> |
| </li> |
| |
| <li> |
| <a href="http://www.jsonline.com/sports/brewers/brewers-confident-theyre-still-contenders-without-fielder-2347icu-139608163.html">Brewers confident they're still contenders without Fielder</a> |
| </li> |
| |
| <li> |
| <a href="http://www.jsonline.com/features/religion/cardinal19-e648eui-139581974.html">Dolan dons the red of cardinal</a> |
| </li> |
| </ul> |
| </div> |
| <div class="sidebar_links_01"> |
| |
|
|
| |
| |
| <div class="headline">More News</div> |
| <ul class="dots_list red"> |
| |
|
|
| |
|
|
|
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
| |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/watchdog/watchdogreports/painkiller-boom-fueled-by-networking-dp3p2rn-139609053.html">Painkiller boom fueled by networking</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html">Love missives carry 'forever' postmark</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/features/religion/cardinal19-e648eui-139581974.html">Dolan dons the red of cardinal</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/news/education/report-suggests-schools-improve-after-some-students-leave-gk482a2-139606983.html">Report suggests schools improve after some students leave</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/news/milwaukee/discipline-woes-deepen-for-lawyer-ib457hb-139606933.html">Discipline woes deepen for Milwaukee lawyer</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/news/wisconsin/civil-war-letters-become-basis-for-songs-os43d2k-139607073.html">Civil War letters become basis for songs</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/news/milwaukee/for-weary-hearts-a-coiling-warmth-n042bj7-139607053.html">For weary hearts, a coiling warmth</a> |
| </li> |
| |
| |
| <li> |
| <a href="http://www.jsonline.com/news/education/round-2-of-improving-education-coming-amid-less-fanfare-9j486nj-139607033.html">Round 2 of improving education coming amid less fanfare</a> |
| </li> |
| </ul> |
| </div> |
| </div> |
| |
| |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <div class="odd pos_1 first feature"> |
| <h2 class="title">More Milwaukee County News |
|
|
|
|
|
|
| </h2> |
| <div class="headlines"> |
|
|
| |
|
|
|
|
|
|
|
|
| <div class="stacked_content"> |
| <div class="stacked_headlines"> |
| <ul> |
| <li> |
|
|
|
|
|
|
| <a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html"> |
| <strong>Jim Stingl: </strong> |
| Love missives carry 'forever' postmark |
| </a> |
|
|
| <span class="comments"><a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html?page=1" rel="nofollow">(3)</a></span> |
|
|
| </li> |
|
|
|
|
|
|
|
|
| <li> |
|
|
|
|
|
|
| <a href="http://www.jsonline.com/features/religion/cardinal19-e648eui-139581974.html"> |
| Dolan dons the red of cardinal |
| </a> |
|
|
|
|
| </li> |
|
|
|
|
|
|
|
|
| <li> |
|
|
|
|
|
|
| <a href="http://www.jsonline.com/news/milwaukee/discipline-woes-deepen-for-lawyer-ib457hb-139606933.html"> |
| Discipline woes deepen for Milwaukee lawyer |
| </a> |
|
|
|
|
| </li> |
|
|
|
|
|
|
|
|
| <li> |
|
|
|
|
|
|
| <a href="http://www.jsonline.com/news/milwaukee/for-weary-hearts-a-coiling-warmth-n042bj7-139607053.html"> |
| For weary hearts, a coiling warmth |
| </a> |
|
|
| <span class="comments"><a href="http://www.jsonline.com/news/milwaukee/for-weary-hearts-a-coiling-warmth-n042bj7-139607053.html?page=1" rel="nofollow">(3)</a></span> |
|
|
| </li> |
|
|
|
|
|
|
|
|
| <li> |
|
|
|
|
|
|
| <a href="http://www.jsonline.com/news/milwaukee/man-19-fatally-shot-in-cudahy-1348eoa-139574583.html"> |
| Man, 19, fatally shot in Cudahy |
| </a> |
|
|
|
|
| </li> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| </ul> |
| </div> |
| </div> |
| |
| <div class="feature_content"><a href="http://www.jsonline.com/news/milwaukee/headlines"><strong>More</strong></a></div> |
| </div> |
| </div> |
|
|
| <div class="side_section_container graphic latestphotogalleries"> |
| <div class="side_container_01"> |
| <div class="title">Photo Galleries |
|
|
|
|
|
|
| </div> |
| <div class="side_container_01_content" style="overflow:hidden;"> |
| <div class="side_container_01_intro"><p>Get the news in photos with the latest galleries from JSOnline. <a href="http://www.jsonline.com/photos"><strong>View all galleries</strong></a></p></div> |
| <style type="text/css"> |
| .photo_grid{overflow:hidden;} |
| .photo_grid ul{overflow:hidden;margin:0;padding:0;} |
| .photo_grid .num_columns_1 li{width:100%;} |
| .photo_grid .num_columns_2 li{width:49%;} |
| .photo_grid .num_columns_3 li{width:32%;} |
| .photo_grid .num_columns_4 li{width:24%;} |
| .photo_grid .num_columns_5 li{width:19%;} |
| .photo_grid .num_columns_6 li{width:15%;} |
| .photo_grid .num_columns_7 li{width:13%;} |
| .photo_grid .num_columns_8 li{width:11%;} |
| .photo_grid li{list-style:none;background:none;float:left;overflow:hidden;margin:0;padding:0;margin-bottom:1%;margin-right:1%;} |
| .photo_grid li.first_column{clear:left;} |
| .photo_grid li.last_column{margin-bottom:1%;margin-right:0;} |
| .photo_grid li .thumb_wrap{text-align:center;display:block;overflow:hidden;} |
| .photo_grid li img{border:none;width:100%;} |
| .photo_grid .paging{clear: left;margin: 10px 0;width: 100%;height:100%;overflow:hidden;} |
| .photo_grid .prev{text-indent:-1000px;background:url("http://media.jsonline.com/designimages/back_button_JSO.gif") no-repeat scroll 0 0 transparent;cursor: pointer;float: left;height: 19px;padding: 0;width: 19px;display:block;} |
| .photo_grid .count{float: left;margin:0 5px;display:block;} |
| .photo_grid .next{text-indent:-1000px;background: url("http://media.jsonline.com/designimages/forward_button.gif") no-repeat scroll 0 0 transparent;cursor: pointer;float: left;height: 19px;padding: 0;width: 19px;display:block;} |
| </style> |
| <div id="photo_grid_43284522_0" class="photo_grid"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <ul class="odd pos_1 first num_columns_2" style="height: 266px; "> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_1 first first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/62680607.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/mjs-bellasnow_0746_-mjs_-mj.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/62680607.html">Photos of the Week</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_2 last_column"> |
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139614663.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/MJS_TAP_SNAPS_05.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139614663.html">Tap Snaps: Food & Froth Fest</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_3 first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139578474.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/dolan-021912.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139578474.html">Timothy Dolan elevated to cardinal</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_4 last last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139609943.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/brew21812c.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139609943.html">Brewers spring training workout</a> |
| </li> |
| </ul> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <ul class="even pos_2 num_columns_2" style="height: 266px; display: none; "> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_1 first first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139560803.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Thumbnail+Stincol+Jeanne+and+Chester.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139560803.html">Jeanne and Chester Sakwinski</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_2 last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139600783.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/mjs-pantmen19-08-ofx-wood-pantmen19.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139600783.html">UW-Milwaukee 67, Fairfield 63</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_3 first_column"> |
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139536163.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/simpsonsgallthumb.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139536163.html">Celebrities on the Simpsons</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_4 last last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139584124.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/ap-marquette-connecticut-basketball(4).jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139584124.html">Marquette 79, Connecticut 64</a> |
| </li> |
| </ul> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <ul class="odd pos_3 num_columns_2" style="height: 266px; display: none; "> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_1 first first_column"> |
| <a href="http://www.jsonline.com/entertainment/multimedia/139573928.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/whitney-021912-thumb.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/entertainment/multimedia/139573928.html">Whitney Houston's funeral</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_2 last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139554653.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Thumbnail+Shadid.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139554653.html">Reporter Anthony Shadid dies</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_3 first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139555393.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Thumbnail+animee.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139555393.html">Anime assembly</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_4 last last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139559773.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/prepthumb021712.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139559773.html">Boys basketball: New Berlin Eisenhower vs. Whitnall</a> |
| </li> |
| </ul> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <ul class="even pos_4 num_columns_2" style="height: 266px; display: none; "> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_1 first first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139556028.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/brewthumb021712.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139556028.html">Brewers early spring training workout</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_2 last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139410638.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/285kaman21512.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139410638.html">Hornets 92, Bucks 89</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_3 first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139407568.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/26933529-mjs_arearugs19-_nws-_sears-_6.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139407568.html">Starting with an area rug</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_4 last last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139167249.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/athomethumb9.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139167249.html">At Home with Josh and Jennifer Schafer</a> |
| </li> |
| </ul> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <ul class="odd pos_5 last num_columns_2" style="height: 266px; display: none; "> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_1 first first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139375663.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/27049629-mjs_obama_lock_3.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139375663.html">President Obama visits Milwaukee</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_2 last_column"> |
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139340658.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/27038159-ap_dog_show.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139340658.html">The dogs of Westminster</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="odd pos_3 first_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139339223.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/prepthumb021412.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139339223.html">Girls Basketball: Milwaukee King vs. Arrowhead</a> |
| </li> |
| |
|
|
| |
| |
|
|
|
|
|
|
| <li class="even pos_4 last last_column"> |
| <a href="http://www.jsonline.com/multimedia/photos/139318203.html" class="thumb_wrap" style="height: 96.6px; width: 138px; "><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/27040451-mjs_frontier15_3_of_hoffman.jpg_frontier15.jpg" style="height: 96.6px; width: auto; "></a> |
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139318203.html">Frontier cuts service in Milwaukee</a> |
| </li> |
| </ul> |
| <div class="paging"> |
| <span class="prev button">prev</span> |
| <span class="count">1 of 5</span> |
| <span class="next button">next</span> |
| </div> |
| </div> |
| <script src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/ji_gallery_grid.js" type="text/javascript"></script> |
| <script type="text/javascript"> |
| $("#photo_grid_43284522_0").ji_gallery_grid({numPages:5}); |
| </script> |
| </div> |
| </div> |
| </div> |
|
|
|
|
|
|
| <script> |
|
|
| if(typeof walrus == 'undefined'){ |
|
|
| document.write('<script src=\"http:\/\/www.jsonline.com\/templates\/BrightCoveWalrus.js?v=1\"><\/script>'); |
|
|
| } |
| </script><script src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/BrightCoveWalrus.js"></script> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| <div class="side_section_container video_gallery"> |
| <div class="side_container_01"> |
| <div class="title">JSOnline video</div> |
| <div class="side_container_01_content"> |
| |
| <div class="side_container_01_intro"> |
| <p>Browse the latest JSOnline video below and find more on our <a href="http://www.jsonline.com/multimedia/video"><strong>video home page</strong></a>.</p> |
| </div> |
| |
| |
| |
| <div id="BCgridContainer_50052492" class="BCgridContainer" classname="BCgridContainer"><div class="BCgridWrap" classname="BCgridWrap"><div class="BCgridThumbWrap BCgridThumbFirst" style="width:90.56px;"><div class="BCgridThumb" style="width:90.56px;height:63.391999999999996px;"><a href="http://www.jsonline.com/multimedia/video/?bcpid=13960334001&bcplid=14192768001&bctid=1458457990001"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/1747251531_1458462950001_vs-1458412116001.jpg" class="BCgridThumbImg"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/BCplay3.gif" class="playbtn" onmouseover="walrus.hover(this, 100)" onmouseout="walrus.hover(this, 60)"></a></div><a href="http://www.jsonline.com/multimedia/video/?bcpid=13960334001&bcplid=14192768001&bctid=1458457990001">Anime comes to Milwaukee</a></div><div class="BCgridThumbWrap BCgridThumbFirst" style="width:90.56px;"><div class="BCgridThumb" style="width:90.56px;height:63.391999999999996px;"><a href="http://www.jsonline.com/multimedia/video/?bcpid=13960334001&bcplid=14192768001&bctid=1456692935001"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/1747251531_1456707632001_vs-1456699629001.jpg" class="BCgridThumbImg"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/BCplay3.gif" class="playbtn" onmouseover="walrus.hover(this, 100)" onmouseout="walrus.hover(this, 60)"></a></div><a href="http://www.jsonline.com/multimedia/video/?bcpid=13960334001&bcplid=14192768001&bctid=1456692935001">Land and Space: Park East development</a></div><div class="BCgridThumbWrap BCgridThumbLast" style="width:90.56px;"><div class="BCgridThumb" style="width:90.56px;height:63.391999999999996px;"><a href="http://www.jsonline.com/multimedia/video/?bcpid=13960334001&bcplid=14192768001&bctid=1456799420001"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/1747251531_1456800140001_480.jpg" class="BCgridThumbImg"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/BCplay3.gif" class="playbtn" onmouseover="walrus.hover(this, 100)" onmouseout="walrus.hover(this, 60)"></a></div><a href="http://www.jsonline.com/multimedia/video/?bcpid=13960334001&bcplid=14192768001&bctid=1456799420001">Carol Deptolla: NaNa Asian Fusion</a></div><div class="BCgridThumbClear"> </div><div class="BCgridThumbClear"> </div></div><div class="BCgridNav" classname="BCgridNav"><div class="BCgridNavPrev" classname="BCgridNavPrev"></div><div class="BCgridNavPaging" classname="BCgridNavPaging">Page 1 of 5</div><div class="BCgridNavNext" classname="BCgridNavNext"> </div><div class="clear_left" classname="clear_left"> </div></div></div> |
| |
| |
| </div> |
| </div> |
| </div> |
|
|
|
|
|
|
|
|
|
|
| <script> |
|
|
|
|
| walrus('BCgridContainer_50052492').grid({ |
| bcpid:'13960334001', |
| baseVideoURL:'http://www.jsonline.com/multimedia/video/', |
| openPopup:false, |
| pageSize:3, |
| numVideos:15, |
| numColumns:3, |
| showNavigation:true, |
| showTitle:true, |
| query:'command=find_playlist_by_id&playlist_id=14192768001&page_size=25&page_number=0&token=safx3rWLeXydje4VVF8GIRQHp9fbxDLVCXFUNx3J0Ro.&get_item_count=true&callback={callback}' |
| }); |
|
|
|
|
| </script> |
|
|
|
|
|
|
|
|
|
|
| |
| |
|
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
| |
| |
| <div class="side_section_container"> |
| <div class="headline"> |
| |
| |
| |
| <div class="mostpopular">Most Popular - News</div> |
| </div> |
| |
| <div class="side_container_01"> |
| <div class="side_container_01_content"> |
| <div class="side_section_tabs_container contentblock" id="Div6"> |
| <ul class="side_section_tabs"> |
| <li onclick="toggleTabs(this,'popularList_List1_section','popularList_List2_section','popularList_List3_section')"><a class="current" href="javascript:nullFunction();" title="most read"><span>most read</span></a></li> |
| <li onclick="toggleTabs(this,'popularList_List2_section','popularList_List1_section','popularList_List3_section')"><a href="javascript:nullFunction();" title="commented"><span>commented</span></a></li> |
| <li onclick="toggleTabs(this,'popularList_List3_section','popularList_List1_section','popularList_List2_section')"><a href="javascript:nullFunction();" title="emailed"><span>e-mailed</span></a></li> |
| </ul> |
| </div> |
| <ul class="dots_list red" id="popularList_List1_section"> |
| <li><a href="http://www.jsonline.com/news/education/report-suggests-schools-improve-after-some-students-leave-gk482a2-139606983.html">Report suggests schools improve after some students leave</a></li> |
| <li><a href="http://www.jsonline.com/news/statepolitics/barrett-says-he-considering-challenging-walker-in-recall-b248lat-139610963.html">Barrett says he is considering challenging Walker in recall</a></li> |
| <li><a href="http://www.jsonline.com/news/milwaukee/discipline-woes-deepen-for-lawyer-ib457hb-139606933.html">Discipline woes deepen for Milwaukee lawyer</a></li> |
| <li><a href="http://www.jsonline.com/news/wisconsin/snowmobilers-rescued-after-plunging-through-ice-in-beaver-dam-b248ip2-139599493.html">One snowmobiler dies after group plunges through ice on Beaver Dam Lake</a></li> |
| <li><a href="http://www.jsonline.com/news/opinion/russell-walkers-wild-card-ng463n8-139551498.html">Russell: Walker's wild card</a></li> |
| </ul> |
| <ul class="dots_list red" id="popularList_List2_section" style="display:none;"> |
| <li><a href="http://www.jsonline.com/news/statepolitics/barrett-says-he-considering-challenging-walker-in-recall-b248lat-139610963.html">Barrett says he is considering challenging Walker in recall</a><span class="comments"><a href="http://www.jsonline.com/news/statepolitics/barrett-says-he-considering-challenging-walker-in-recall-b248lat-139610963.html#comments">(131)</a></span></li> |
| <li><a href="http://www.jsonline.com/news/opinion/russell-walkers-wild-card-ng463n8-139551498.html">Russell: Walker's wild card</a><span class="comments"><a href="http://www.jsonline.com/news/opinion/russell-walkers-wild-card-ng463n8-139551498.html#comments">(36)</a></span></li> |
| <li><a href="http://www.jsonline.com/news/opinion/letters19-0747q7l-139551483.html">Your views</a><span class="comments"><a href="http://www.jsonline.com/news/opinion/letters19-0747q7l-139551483.html#comments">(27)</a></span></li> |
| <li><a href="http://www.jsonline.com/news/education/round-2-of-improving-education-coming-amid-less-fanfare-9j486nj-139607033.html">Round 2 of improving education coming amid less fanfare</a><span class="comments"><a href="http://www.jsonline.com/news/education/round-2-of-improving-education-coming-amid-less-fanfare-9j486nj-139607033.html#comments">(5)</a></span></li> |
| <li><a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html">Love missives carry 'forever' postmark</a><span class="comments"><a href="http://www.jsonline.com/news/milwaukee/love-missives-carry-forever-postmark-4l47npa-139609063.html#comments">(3)</a></span></li> |
| </ul> |
| <ul class="dots_list red" id="popularList_List3_section" style="display:none;"> |
| <li><a href="http://www.jsonline.com/news/milwaukee/for-weary-hearts-a-coiling-warmth-n042bj7-139607053.html">For weary hearts, a coiling warmth</a></li> |
| <li><a href="http://www.jsonline.com/news/education/128655203.html">New Berlin School Board OKs new handbook</a></li> |
| <li><a href="http://www.jsonline.com/news/wisconsin/snowmobilers-rescued-after-plunging-through-ice-in-beaver-dam-b248ip2-139599493.html">One snowmobiler dies after group plunges through ice on Beaver Dam Lake</a></li> |
| <li><a href="http://www.jsonline.com/news/education/report-suggests-schools-improve-after-some-students-leave-gk482a2-139606983.html">Report suggests schools improve after some students leave</a></li> |
| <li><a href="http://www.jsonline.com/news/statepolitics/barrett-says-he-considering-challenging-walker-in-recall-b248lat-139610963.html">Barrett says he is considering challenging Walker in recall</a></li> |
| </ul> |
| </div> |
| <div class="side_container_01_footer"> |
| <a href="http://www.jsonline.com/popular_content">more most popular content...</a> |
| </div> |
| </div> |
| </div> |
| |
| <script language="javascript" type="text/javascript" src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JSO_widget_MostPopular.js"></script> |
| |
| |
| |
|
|
|
|
|
|
|
|
|
|
| |
| <div class="odd pos_1 first block ad Yahoo id44004167 size300x250"> |
| <h4>advertisement</h4> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("bb_left_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
|
|
|
|
|
|
|
|
| |
| <div class="odd pos_false yahoo_ads"> |
| <script type="text/javascript"> |
| <!-- |
| if (window.DisplayTextAds) DisplayTextAds("Contextual"); |
| // --> |
| </script><script type="text/javascript">adsonar_placementId=1409463;adsonar_pid=527757;adsonar_ps=-1;adsonar_zw=300;adsonar_zh=250;adsonar_jv="ads.adsonar.com";</script><script language="JavaScript" src="http://js.adsonar.com/js/adsonar.js"></script> |
| </div> |
|
|
|
|
| </div> |
| </div> |
| |
|
|
|
|
| |
| </div> |
| |
| <div class="full_width_content_container noindex"> |
| |
| |
|
|
|
|
| <h3 class="footerTitle">Elsewhere on JSOnline</h3> |
| <div class="sectionals contentblock"> |
|
|
| <div class="sectionals_section"> |
| <div class="title">Anthony Shadid</div> |
| |
|
|
|
|
| <a href="http://www.jsonline.com/news/wisconsin/journalist-shadid-kept-wisconsin-roots-close-ac485h6-139547173.html" class="sectionals_link"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/MJS_shadid.1.jpg" width="132" height="82" alt="" title="" border="0"></a> |
| <a href="http://www.jsonline.com/news/wisconsin/journalist-shadid-kept-wisconsin-roots-close-ac485h6-139547173.html" class="sectionals_link">Reporter kept Wisconsin roots close</a> |
| </div> |
| |
| <div class="sectionals_section"> |
| <div class="title">Photo Gallery</div> |
| |
|
|
|
|
| <a href="http://www.jsonline.com/multimedia/photos/139555393.html" class="sectionals_link"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/Thumbnail+animee(1).jpg" width="132" height="82" alt="" title="" border="0"></a> |
| <a href="http://www.jsonline.com/multimedia/photos/139555393.html" class="sectionals_link">Anime assembly</a> |
| </div> |
| |
| <div class="sectionals_section"> |
| <div class="title">Savage on Wheels</div> |
| |
|
|
|
|
| <a href="http://www.jsonline.com/wheels/nissans-versa-simple-inexpensive-pi4020h-139551188.html" class="sectionals_link"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/AP_Nissan_Recall.jpg" width="132" height="82" alt="" title="" border="0"></a> |
| <a href="http://www.jsonline.com/wheels/nissans-versa-simple-inexpensive-pi4020h-139551188.html" class="sectionals_link">Nissan's Versa simple, inexpensive</a> |
| </div> |
| |
| <div class="sectionals_section"> |
| <div class="title">Gatherings</div> |
| |
|
|
|
|
| <a href="http://www.jsonline.com/features/food/southern-comfort-food-du2vfg5-139406823.html" class="sectionals_link"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/26910917-mjs_gather12_04_ent_wood_gather12.jpg" width="132" height="82" alt="" title="" border="0"></a> |
| <a href="http://www.jsonline.com/features/food/southern-comfort-food-du2vfg5-139406823.html" class="sectionals_link">Southern comfort food</a> |
| </div> |
| |
| <div class="sectionals_section"> |
| <div class="title">Photo Gallery</div> |
| |
|
|
|
|
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139614663.html" class="sectionals_link"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/MJS_TAP_SNAPS_05(1).jpg" width="132" height="82" alt="" title="" border="0"></a> |
| <a href="http://www.jsonline.com/entertainment/multimedia/photos/139614663.html" class="sectionals_link">Tap Snaps: Food & Froth Fest</a> |
| </div> |
| |
| <div class="sectionals_section last_section"> |
| <div class="title">Business</div> |
| |
|
|
|
|
| <a href="http://www.jsonline.com/business/oconto-boatbuilder-kcs-acquires-line-of-yachts-oi48601-139558198.html" class="sectionals_link"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/MJS_KCS_International_boat.jpg" width="132" height="82" alt="" title="" border="0"></a> |
| <a href="http://www.jsonline.com/business/oconto-boatbuilder-kcs-acquires-line-of-yachts-oi48601-139558198.html" class="sectionals_link">KCS acquires line of yachts</a> |
| </div> |
| </div> |
| <div class="full_width_ad"> |
| |
|
|
|
|
|
|
|
|
|
|
| |
| <div class="odd pos_1 first block ad Yahoo id44004272 size728x90"> |
| <script type="text/javascript"> |
| <!-- |
| yld_mgr.place_ad_here("lb_bot_slot"); |
| // --> |
| </script> |
| </div> |
|
|
|
|
| |
| </div> |
| </div> |
|
|
| <div class="noindex"> |
| <div class="footer"> |
| <p id="jsonline-partner-sites"> |
| <a href="http://www.jsonline.com/">JSOnline</a> |
| | <a href="http://www.mycommunitynow.com/" target="_blank">MyCommunityNOW</a> |
| | <a href="http://www.livinglakecountry.com/" target="_blank">Living Lake Country</a> |
| | <a href="http://www.milwaukeemoms.com/" target="_blank">MilwaukeeMoms</a> |
| | <a href="http://www.todaystmj4.com/" target="_blank">Today's TMJ4</a> |
| | <a href="http://www.620wtmj.com/" target="_blank">Newsradio 620</a> |
| | <a href="http://www.945lakefm.com/" target="_blank">94.5 Lake FM</a> |
| </p> |
| <p> |
| <a href="http://www.jsonline.com/privacy/" target=""><b>PRIVACY POLICY/YOUR CALIFORNIA PRIVACY RIGHTS</b> <br></a> |
| | <a href="http://www.jsonline.com/termsofuse/" target="">Terms of Use</a> |
| | <a href="http://www.jsonline.com/contact/" target="">Contact Us</a> |
| | <a href="http://www.jobsatjournalsentinel.com/" target="_blank">Journal Careers</a> |
| | <a href="http://www.jsonline.com/services/" target="">Subscription Services</a> |
| | <a href="http://www.jsonline.com/placeanad/" target="">Place an Ad</a> |
| | <a href="http://www.jsonline.com/general/31308799.html#trackingTechnology" target="">About Our Ads</a> |
| | <a href="http://www.jsonline.com/advertise/" target="">Advertise with Us</a> |
| | <a href="http://www.jsonline.com/business/pressrelease" target="">PR Hub</a> |
| </p> |
| <p><a href="http://www.jsonline.com/copyright.html" rel="item-license">© 2012</a>, Journal Sentinel Inc. All rights reserved.</p> |
| <p></p> |
|
|
| <p>Powered by <a href="http://www.clickability.com/" target="_blank">Clickability.</a></p> |
| <p>Produced and Managed by <a href="http://www.journalinteractive.com/" target="_blank">Journal Interactive.</a></p> |
| <p><a href="http://www.journalinteractive.com/" target="_blank"><img src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/JournalInteractiveMilwaukee.gif" alt="Journal Interactive"></a></p> |
| </div> |
| </div> |
| |
| </div> |
| </div> |
| <script type="text/javascript"> |
| var links = $("#content_container").find("a"); |
| for(i = 0;i<links.length;i++) |
| { |
| if((links[i].href.indexOf("jsonline.com") < 0) && (links[i].href.indexOf("hosted.ap.org") < 0)&& (links[i].href.indexOf("javascript") < 0)) |
| links[i].target = "_blank"; |
| } |
| var entlinks = $("#ent_content_container").find("a"); |
| for(j = 0;j<entlinks.length;j++) |
| { |
| if((entlinks[j].href.indexOf("jsonline.com") < 0) && (entlinks[j].href.indexOf("hosted.ap.org") < 0)&& (entlinks[j].href.indexOf("javascript") < 0)) |
| entlinks[j].target = "_blank"; |
| } |
| </script> |
|
|
| <div id="tko" style="display:none"></div> |
| <script src="./Discovery satisfies thirst for knowledge about soldier - JSOnline_files/jquery.cookie(1).js" type="text/javascript"></script> |
| <script type="text/javascript"> |
| r="0" |
| var cc = $.cookie("cct"); |
| var un = $.cookie("curUserInfo"); |
| if(un != null) |
| r = "1"; |
|
|
| count = parseInt(cc); |
| if(isNaN(count)) |
| count = 1 |
| else |
| count = count + 1; |
|
|
| if(count == 20) |
| { |
| $('#tko').prepend('<img id="tkoimg" src="http://widgets.journalinteractive.com/Threshold/Track.ashx?r=' + r + '" />') |
| } |
| var d = new Date(); |
| var y = d.getFullYear(); |
| var m = d.getMonth(); |
| m = m+1 |
| if(m>11) |
| m = 0; |
| d = new Date(y,m,1,23,59,59,0); |
| d = new Date(d-1); |
|
|
| var cookieOptions = { |
| path: '/', |
| expires: d |
| } |
| $.cookie('cct',count,cookieOptions); |
| </script> |
|
|
|
|
|
|
|
|
|
|
|
|
| </body></html> |