

	










            



    


    
        







    
            

        
                                
                                             
                                            
        
                                    


<!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">
	<head>
     <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
		<title>Living Lake Country</title>

    <!-- START Facebook meta data -->
    <meta name="title" content="LLC-Home Page"/> 

                    
    <meta name="description" content="" />
    <meta name="keywords" content="" />
    <meta name="author" content=" " />
    <meta name="pagetype" content = "LLC Index Page" />
    <meta name="publishdate" content="Wed Feb 17 12:54:35 PST 2010" />
    <meta name="pagesection" content="" />

	<link type="image/ico" rel="icon" href="http://media.livinglakecountry.com/designimages/LLC-favicon.ico" />


	
            <meta name="medium" content="news" />
    <!-- END Facebook meta data -->


    
<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("&#38;");
	  		var percentRegex = new RegExp("%", "g"); 
	   		var replacePerStr = escape("&#37;");

       		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 :  -1 ,
		did :  448179 ,
		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 =  -1 ;
	var did =  448179 ;	
	
	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="http://www.livinglakecountry.com/includes/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.livinglakecountry.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 rel="stylesheet" href="http://www.livinglakecountry.com/templates/LLC.css" type="text/css" media="all" />
			
						<script type="text/javascript" src="http://www.livinglakecountry.com/includes/jquery.js"></script>
					<script type="text/javascript" src="http://www.livinglakecountry.com/includes/jquery.omniture_link_tracking.js"></script>
			
						<script type="text/javascript" src="http://www.livinglakecountry.com/templates/JSO_commonFunctions.js"></script>
			









<script type="text/javascript">
    //<![CDATA[
    var path = "http://www.livinglakecountry.com/";
    var pageName = "Home";
    var siteId = 50;
    var site = "livinglakecountry.com";
    var account = "jisentinellakecountry";
    var sectionid = 448179;
    var pageId = 448179;
    var category1 = "";
    var category2 = "";
    var category3 = "";
    var category4 = "";
    var btCategory = "News";
    var section1 = "homepage";
    var section2 = "";
    var section3 = "";
    var specialSection = "";
    var type1 = "Index";
    var type2 = "";
    var author = "";
    var source = "www.livinglakecountry.com";
    var tags = "";
    var demo = "";
    var column = "";
    var sReferral = "";
    var system = "Clickability";
    //]]>
</script>

<script type="text/javascript">
    //<![CDATA[
    yld_mgr = {};
    yld_mgr.pub_id="24231163084";
    yld_mgr.site_name="Living Lake Country";
    yld_mgr.request_type="ac";
    yld_mgr.content_topic_id_list=['20201001'];
    yld_mgr.site_section_name_list=['Home Page'];
    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=[];
    yld_mgr.slots.lb_slot.content_type_list=['fn_news'];
    
    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=[];
    yld_mgr.slots.tb_slot.content_type_list=['fn_news'];
    
    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=[];
    yld_mgr.slots.ws_slot.content_type_list=['fn_news'];
    
    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=[];
    yld_mgr.slots.bb_slot.content_type_list=['fn_news'];
    
    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=[];
    yld_mgr.slots.bb_left_slot.content_type_list=['fn_news'];
    
    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=[];
    yld_mgr.slots.lb_bot_slot.content_type_list=['fn_news'];
    
    yld_mgr.slots.tile_slot = {};
    yld_mgr.slots.tile_slot.ad_size_list=["88x31"];
    yld_mgr.slots.tile_slot.ad_delivery_mode="ipatf";
    yld_mgr.slots.tile_slot.cstm_content_cat_list=[];
    yld_mgr.slots.tile_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=[];
    yld_mgr.slots.tile2_slot.content_type_list=['fn_news'];
    
    yld_mgr.slots.hb_slot = {};
    yld_mgr.slots.hb_slot.ad_size_list=["234x60"];
    yld_mgr.slots.hb_slot.ad_delivery_mode="ipatf";
    yld_mgr.slots.hb_slot.cstm_content_cat_list=[];
    yld_mgr.slots.hb_slot.content_type_list=['fn_news'];
    
    yld_mgr.slots.tb_mid_slot = {};
    yld_mgr.slots.tb_mid_slot.ad_size_list=["300x100"];
    yld_mgr.slots.tb_mid_slot.ad_delivery_mode="ipstf";
    yld_mgr.slots.tb_mid_slot.cstm_content_cat_list=[];
    yld_mgr.slots.tb_mid_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=[];
    yld_mgr.slots.tb_bot_slot.content_type_list=['fn_news'];
    
    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=[];
    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=[];
    yld_mgr.slots.peel_slot.content_type_list=['fn_news'];
    //]]>
</script>
<script type="text/javascript" src="http://e.yieldmanager.net/script.js"></script>


<script type="text/javascript" src="http://www.livinglakecountry.com/includes/JI_advertise.js"></script>
<script type="text/javascript" src="http://www.livinglakecountry.com/includes/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://jisentinellakecountry.122.2O7.net/b/ss/jisentinellakecountry/1/H.15.1--NS/0?pageName=Home" height="1" width="1" border="0" alt="" /></a>
</noscript> <!--/DO NOT REMOVE/-->

<!-- End SiteCatalyst code version: H.15.1. -->

<!-- End Tracking Scripts -->



	</head>

	<body>
<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=900448179";_q+="&7=448179";_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=900448179";_qc+="&7=448179";_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=900448179&7=448179&18=0.8218194836697387">
</noscript>

<!-- start header -->
      <div id="LLC_login">
<div id="login_bar_wrap">
	<div class="login_bar">
		<ul><li><strong>Welcome to livinglakecountry.com</strong>&nbsp;</li>
			<li><a href="http://www.livinglakecountry.com/s?action=login&amp;rurl=http%3A%2F%2Fwww.livinglakecountry.com%2F" class="first loggedout">Login</a> <span class="loggedin"><script type="text/javascript">if(subcookiejar.fetch("curUserInfo", "userName") && subcookiejar.fetch("curUserInfo", "userName") != "null") {document.write(jsonlineTruncate(subcookiejar.fetch("curUserInfo","userName"),15))}</script> <a href="http://www.livinglakecountry.com/s?action=editReg&amp;rurl=http%3A%2F%2Fwww.livinglakecountry.com%2F">Edit profile</a></span></li>
			<li><a href="http://www.livinglakecountry.com/s?action=reg&amp;rurl=http%3A%2F%2Fwww.livinglakecountry.com%2F" class="loggedout">Register</a> <a href="http://www.livinglakecountry.com/s?action=doLogout&amp;rurl=http%3A%2F%2Fwww.livinglakecountry.com%2F" class="loggedin">Logout</a></li>
<li><a href="/blogs">Blogs</a></li>


		</ul>
<div style="clear:both;"></div>
	</div>

</div>
</div>
        <div id="main">
            <center>
                <div id="topAd" style="height:91px;width:730px;margin:0px;padding:0px;">
<!--startclickprintexclude-->





    
    <div class="block ad Yahoo id44003987 size728x90">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("lb_slot");
         // -->
      </script>
   </div>


<!--endclickprintexclude-->
	</div>

            </center>
            <div id="ctl00_ctl00_header">
                <div id="mastHead">


                  <a href="http://www.livinglakecountry.com/"><img class="Logo" src="http://media.livinglakecountry.com/designimages/LLClogo.jpg" style="border-width:0px;" /></a>                     <div id="topNavigation">
                        <span>
<a id="mItem0" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/">Home</a>
<a id="mItem1" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/lakecountryreporter">Lake Country Reporter</a>
<a id="mItem2" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/oconomowocfocus">Oconomowoc Focus</a>
<a id="mItem3" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/sussexsun">Sussex Sun</a>
<a id="mItem4" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/kettlemoraineindex">Kettle Moraine Index</a>
<a id="mItem5" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/mukwonagochief">Mukwonago Chief</a>
<a id="mItem7" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/jeffersonadvertiser">Jefferson Advertiser</a>
<a id="mItem6" class="inactiveTab" onMouseOver="mHilight(this)" href="http://www.livinglakecountry.com/classified/">Classifieds</a></span>
                    </div><!-- end topNavigation -->
                    <div id="secondaryNavigation">
                        <div id="searchBar">
                        <div class="left"></div>
                        <form id="searchForm" action="http://search.jsonline.com/LLCSearch.aspx" method="get">
			  <input type="hidden" name="select" id="searchType" value="site" />
			  <input size="50" name="k" id="searchText" value=" Start Your Local Search Here" onFocus="this.form.keywords.value = ''" />
			  <input type="image" src="http://media.livinglakecountry.com/designimages/LLCsearchButton.jpg" style="width:69px;height:24px;border-width:0px;left-margin:5px;vertical-align:middle" />&nbsp;&nbsp;						
			</form>
           	    </div>
           	    <!-- input type="button" value="Search" onclick="javascript:submitFields();" -->

                        <!-- div class="left"></div>
                            <input name="ctl00$ctl00$keys" type="text" id="ctl00_ctl00_keys" class="search" onkeypress="if (window.handleKeyPress) handleKeyPress(event, this, '')" />
                            <input type="image" name="ctl00$ctl00$searchArticleImage" id="ctl00_ctl00_searchArticleImage" class="searchButton" src="http://media.livinglakecountry.com/designimages/LLCsearchButton.jpg" onclick="StartSearch();" style="border-width:0px;" />
                            <a id="ctl00_ctl00_searchArticleLink" href="javascript:__doPostBack('ctl00$ctl00$searchArticleLink','')"></a>
                        </div --><!-- end searchBar -->	

<div id="secondNavBar" style="display:none;">
  <div class="left"></div>
  <div id="subMenu" class="center"></div>
  <div class="right"></div>
</div>

                    </div><!-- end secondaryNavigation -->



                <div id="weather">
                                      <!-- start refresh every 5 minutes -->
<!-- last build: Thu Sep 15 21:52:00 PDT 2011 -->
<!-- refresh kb placeholder -->
<!-- refresh kb placeholder -->
<!-- refresh kb placeholder -->
<!-- refresh kb placeholder -->
<!-- end refresh every 5 minutes -->

<!-- BEGIN COMMUNITY MAST FLASH - Weather + Calendar -->






                                                                                            





   

<style>
	#subscriberServicesDropdown{position: absolute;width: 175px;margin: 0px 0px 0px 107px;text-align: left;z-index: 1000;display: none;}
	#subscriberServicesClick{padding-left: 5px;padding-right: 5px;}
	#subscriberServicesDropdown a:link, #subscriberServicesDropdown a:visited{padding: 1px 0px 1px 5px;color: #ffffff;background: #53678b;display: block;width: 140px;height: 14px;}
	#subscriberServicesDropdown a:hover, #subscriberServicesDropdown a:active{background: #41577d;}
</style>
<script type="text/javascript">
	$(document).ready(function(){$("#subscriberServicesClick").click(function(event){$("#subscriberServicesDropdown").toggle();});});
</script>



<div id="nowheadcontain">
	<div id="nhicon"><img src="http://media.jsonline.com/designimages/wea50x50-21.gif" alt="weather" width="50" height="50" border="0" /></div>
	<div id="nhtemp"><p class="nhdeg">36&deg;</p></div>
	<div id="nhleft">
		<div id="nhforetop" align="center"><p class="nhgeneral">Clear | 0MPH</p></div>
		<div id="nhforebot" align="center"><a target="_blank" class="nhlink" href="http://weather.todaystmj4.com/forecasts/search/?zip=53029&c=y&h=23.50">EXTENDED FORECAST</a></div>
	</div>
		
	<div class="nhslash"><img src="http://media.jsonline.com/designimages/invis-slash.gif" alt="" width="20" height="60" border="0" /></div>
	<div id="nhmid" align="center">
		<div id="nhtopmid"><p class="nhgeneral">NEWSROOM * CIRCULATION * ADVERTISING</p></div>



	<a class="nhbox" href="/contactus/39311132.html">CONTACT US</a>


            <a class="nhbox" href="#" id="subscriberServicesClick">SUBSCRIBER SERVICES</a><br />

            <div id="subscriberServicesDropdown">

                <a href="https://www.subscriber-service.com/lakecountry/ns/nsSelectPub.asp">&#187; Subscribe</a>

                <a href="https://www.subscriber-service.com/lakecountry/SplashScreen.asp">&#187; Manage Subscription</a>

            </div>

	</div>


	<div class="nhslash"><img src="http://media.jsonline.com/designimages/invis-slash.gif" alt="" width="20" height="60" border="0" /></div>
	<div id="nhright" align="right">
		<div id="nhtopright"><p class="nowday">Thursday</p></div>
		<div id="nhbotright"><p class="nowmonth">September 2011</p></div>
	</div>
	<div id="nhday"><p class="nowhead2">15</p></div>
</div>



                </div><!-- end weather -->
                </div><!-- end mastHead -->
            </div><!-- end header -->







    
    <div class="block ad Yahoo id50092837 size1000x30">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("pencil_slot");
         // -->
      </script>
   </div>






    
    <div class="block ad Yahoo id50093102 size1x1">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("peel_slot");
         // -->
      </script>
   </div>







            <div id="container" >
                <div id="content">




			
	
		

	

										
	
		

	

								
	
		

	

		
	
		

	
<div id="well">


        <div id="centerContentTop">
	                      


        </div>


     <div id="mainWell">
          <div id="centerTop">
   



	
						




<div class="feature">
<div class="headlines">
<p style="text-align: left"><img alt="" vspace="5" width="15" height="15" src="http://media.journalinteractive.com/images/gold+star1.jpg" /><a href="http://www.livinglakecountry.com/blogs/staffblogs/96605354.html"><img border="0" alt="Click here to read more." src="http://media.journalinteractive.com/designimages/Best_Overall.jpg" /></a>&nbsp;<img alt="" vspace="5" width="15" height="15" src="http://media.journalinteractive.com/images/gold+star1.jpg" /></p>
</div>
</div>



	
	

   



	
						


<!-- Begin NewsWatch -->
	<div class="newswatch">
		<div class="newswatch_header">
			<h2><a href="/lakecountrywatch/">
<img src='http://media.livinglakecountry.com/designimages/lcwheader.gif' alt="Lake Country Watch"/>

</a></h2>

		</div> <!-- end of newswatch_header -->
		<div class="newswatch_content">
			<div class="newswatch_scroller" id="newsWatchScroller">
				
			<p>&raquo;&nbsp;<a href="/lakecountrywatch/129919428.html" class="dywtch_link">Pewaukee man critically injured in crash</a>
			<span class="timestamp">
																	05:59 PM
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129890543.html" class="dywtch_link">Watch WWII girls baseball at Old World Wisconsin this Sunday</a>
			<span class="timestamp">
																	11:34 AM
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129890068.html" class="dywtch_link">Weekend Reads: Barnstorming and designer paper</a>
			<span class="timestamp">
																	11:20 AM
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129876328.html" class="dywtch_link">Board to meet about former OMS</a>
			<span class="timestamp">
																	08:30 AM
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129824718.html" class="dywtch_link">DNR issues air-quality warning</a>
			<span class="timestamp">
																	9/14
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129759883.html" class="dywtch_link">Youth Soccer NIght at Arrowhead </a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129754008.html" class="dywtch_link">United Way in Waukesha County seeks boost in giving</a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129743288.html" class="dywtch_link">DOT announces Highways 83 and 59 intersection closure</a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129741133.html" class="dywtch_link">Minnesota smokes out Wisconsin</a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129734938.html" class="dywtch_link">Minnesota wildfire could be source of smoke</a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129732958.html" class="dywtch_link">Smell smoke?</a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129722323.html" class="dywtch_link">Mock crash at KM High School</a>
			<span class="timestamp">
																	9/13
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129627268.html" class="dywtch_link">Big crowds at Lisbon 9-11 Memorial</a>
			<span class="timestamp">
																	9/11
								
			</span>
			
		</p>
				<p>&raquo;&nbsp;<a href="/lakecountrywatch/129626358.html" class="dywtch_link">Bulldogs win LOL finale </a>
			<span class="timestamp">
																	9/11
								
			</span>
			
		</p>
		
			</div>
			<script language="javascript" type="text/javascript" src="http://www.livinglakecountry.com/templates/LLC_Widget_LakeCountryWatch.js"></script>
			<script language="javascript" type="text/javascript"> window.setTimeout("getNewsWatch('http://www.livinglakecountry.com/templates/LLC_LakeCountryWatch_Items?')", 1000);;</script>

		</div>
		<div class="newswatch_sponsor">





    
    <div class="block ad Yahoo id53167157 size234x60">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("hb_slot");
         // -->
      </script>
   </div>




		</div> <!-- end of newswatch_sponsor -->

		<div class="newswatchFooter">
			<a href="/lakecountrywatch"><img border="0" src='http://media.livinglakecountry.com/designimages/BTN_view_all_posts.gif' alt="View All Posts" /></a>
			<a href="http://www.livinglakecountry.com/contactus/39311132.html"><img border="0" src='http://media.livinglakecountry.com/designimages/BTN_got_a_tip.gif' alt="Got a tip?" /></a>
						<a href="/rss?path=/lakecountrywatch" /><img border="0" src='http://media.livinglakecountry.com/designimages/rss_25x10.gif' alt="rss" /></a>
		</div>
	</div>
	<!-- End NewsWatch -->






	

          </div>
          <div style="clear:both;">
               <div id="centerLeft">
   



	
						



        
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="http://www.jsonline.com/templates/AC_RunActiveContent.js" language="javascript"></script>

        <div class="modFlashSlideshow">
                            <h1 class="headline">In Memory</h1>
                        
                                
                                    
                                
                <script language="javascript">
    if (AC_FL_RunContent == 0) {
        alert("This page requires AC_RunActiveContent.js.");
    } else {
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
            'width', '280',
            'height', '350',
            'src', 'http://media.jsonline.com/designvideo/slideshow280x370',
            'quality', 'high',
            'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'window',
            'devicefont', 'false',
            'id', 'slideshow',
            'bgcolor', '#ffffff',
            'name', 'slideshow',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','always',
            'movie', 'http://media.jsonline.com/designvideo/slideshow280x370',
            'FlashVars', 'xmlFile=http://www.livinglakecountry.com/templates/JSO_Flash_Slideshow_XML?id=129794598%26maxWidth=280%26maxHeight=250%26count=12',
            'salign', ''
            ); //end AC code
    }
</script>
<noscript>

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="280" height="350" id="slideshow" align="middle">
    <param name="allowScriptAccess" value="always" />
    <PARAM NAME=FlashVars VALUE="xmlFile=http://www.jsonline.com/templates/JSO_Flash_Slideshow_XML?id=129794598%26maxWidth=280%26maxHeight=250%26count=12">
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="http://media.jsonline.com/designvideo/slideshow280x370.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />    
    <embed src="http://media.jsonline.com/designvideo/slideshow280x370.swf" FlashVars="xmlFile=http://www.jsonline.com/templates/JSO_Flash_Slideshow_XML?id=129794598%26maxWidth=280%26maxHeight=250%26count=12" quality="high" bgcolor="#ffffff" width="280" height="350" name="slideshow" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
</noscript> 
                
                
                                    <div><p><a href="http://www.livinglakecountry.com/multimedia/photos/?page=1&amp;type=staff">View more photos</a></p></div>
                
               
          </div>
    


	
	

   



	
						




<div class="feature">
<div class="title">Featured Forum:  Postal savings?</div>
<div class="headlines">
<div style="margin: 0in 0in 0pt">
<div style="margin: 0in 0in 0pt">
<div style="margin: 0in 0in 0pt">
<div style="margin: 0in 0in 0pt">
<div style="margin: 0in 0in 0pt">&nbsp;</div>
</div>
</div>
</div>
</div>
<table border="5" cellspacing="1" cellpadding="5" width="300" align="center">
    <tbody>
        <tr>
            <td bgcolor="#b3bfd1" style="text-align: center"><em><strong>Tell us what you think</strong></em></td>
        </tr>
        <tr>
            <td bgcolor="#ffffff">
            <h3 style="text-align: center"><strong><a href="http://www.livinglakecountry.com/lakecountryreporter/129879638.html">Post Office&nbsp;$$$ woes</a></strong></h3>
            <h3 style="text-align: center">&nbsp;<a href="http://www.livinglakecountry.com/lakecountryreporter/129879638.html"><img border="0" hspace="5" alt="Click here to enter forum" align="left" width="150" height="152" src="http://media.jsonline.com/images/US+Post+Office+logo.jpg" /></a></h3>
            <div style="text-align: left; margin: 0in 0in 0pt">
            <div style="text-align: left; margin: 0in 0in 0pt">&nbsp;</div>
            <div style="text-align: left; margin: 0in 0in 0pt">&nbsp;</div>
            <div style="text-align: left; margin: 0in 0in 0pt">With the Postal Service facing a more than $5&nbsp;billion shortfall, Washington&rsquo;s options include closing post offices and eliminating Saturday delivery.</div>
            <div style="text-align: left; margin: 0in 0in 0pt">&nbsp;</div>
            <div style="text-align: left; margin: 0in 0in 0pt">
            <div style="margin: 0in 0in 0pt">&nbsp;</div>
            <div style="margin: 0in 0in 0pt"><a href="http://www.livinglakecountry.com/lakecountryreporter/129879638.html">What do you think is the best way they could save money?</a></div>
            </div>
            <div style="text-align: left; margin: 0in 0in 0pt">&nbsp;&nbsp;</div>
            <div style="text-align: left; margin: 0in 0in 0pt"><a href="http://www.livinglakecountry.com/forums/">View past featured forum questions</a></div>
            </div>
            </td>
        </tr>
    </tbody>
</table>
</div>
</div>



	
	

   



	
						


            <!-- Begin JavaScript Widget -->
<div class="side_section_container javascript">
        <div class="side_container_01"> 
                <div class="title">Staff Blogs</div>
<div class="side_container_01_content"><div class="side_container_01_content scores">                        <!-- JavaScript here -->
<P align=center><A href="http://www.livinglakecountry.com/blogs/staffblogs/cooks_corner.html"><IMG src="http://media.journalinteractive.com/designimages/Cooks_Corner_LOGO.jpg " border=0/></A><BR>Latest Topic:
<script src="http://www.livinglakecountry.com/templates/GlobalWriteTemplate.js?template=JI.Module.LatestBlogPost&blog_id=44993242&date_format=(M/d)&show_comment_count=true"></script> </P>
</div></div>
        </div>
    </div>
    <!-- End JavaScript Widget -->


	
	

   



	
						


            <!-- Begin JavaScript Widget -->
<div class="side_section_container javascript">
        <div class="side_container_01"> 
<div class="side_container_01_content"><div class="side_container_01_content scores">                        <!-- JavaScript here -->
<P align=center>
<A href="http://www.livinglakecountry.com/blogs/staffblogs/preps_alcove.html">
<IMG src="http://media.journalinteractive.com/images/JCPG_LCP_PREPSALCOVE-HEADER_19800223.jpg" border=0 /></A><BR>Latest Topic:
<script src="http://www.livinglakecountry.com/templates/GlobalWriteTemplate.js?template=JI.Module.LatestBlogPost&blog_id=44990592&date_format=(M/d)&show_comment_count=true"></script><BR><b>Follow the Preps Alcove on </b><a href="http://twitter.com/JRRadcliffe" target="_Blank"><IMG src="http://media.journalinteractive.com/images/twitteralcove2.jpg" border=0 /></a>
</div></div>
        </div>
    </div>
    <!-- End JavaScript Widget -->


	
	

   



	
						

            







            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Sports</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                            <h4>Cross country</h4>
                                                    <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/sports/129808543.html" >Setting the record straight</a>
                                        </h3>
                                
        
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/lakecountryreporter/sports/129808543.html' ><img src="http://media.livinglakecountry.com/images/100*91/jcpg+kmh_vinhal-xc_2332.jpg" width="100" height="91" alt="" title="" border="0" /></a>In just her second year of cross country at Kettle Moraine, Taylor Vinhal has become one of the area's finest runners, most recently setting the school record at the Arrowhead Invitational.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                            <h4>Photo gallery</h4>
                                                    <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/multimedia/photos/129808248.html" >Tennis: Kettle Moraine at Catholic Memorial</a>
                                        </h3>
                                
        
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/multimedia/photos/129808248.html' ><img src="http://media.livinglakecountry.com/images/100*86/jcpg+kmh_l-reynolds-tn_5864.jpg" width="100" height="86" alt="" title="" border="0" /></a>In a battle between two of the top three teams in the Classic 8 Conference, Catholic Memorial took a 5-2 win over Kettle Moraine on Tuesday at Woyahn Tennis Complex in Waukesha.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                            <h4>Photo gallery</h4>
                                                    <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/multimedia/photos/129526323.html" >Girls swimming: Classic 8 Relays</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/multimedia/photos/129526323.html' ><img src="http://media.livinglakecountry.com/images/100*84/jcpg+ahs_newcomer-sw_3196.jpg" width="100" height="84" alt="" title="" border="0" /></a>Arrowhead continued its longstanding dominance in the Classic 8 Conference by winning the league's annual relays meet Sept. 8, but it wasn't by a large margin. The Warhawks did just enough to edge out Waukesha South/Mukwonago, 124-120, in a meet at Waukesha West.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                            <h4>Photo gallery</h4>
                                                    <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/multimedia/photos/129734138.html" >Girls golf: Classic 8 mini meet</a>
                                        </h3>
                                
        
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/multimedia/photos/129734138.html' ><img src="http://media.livinglakecountry.com/images/100*89/jcpg+ahs_gunnison-gf_5024.jpg" width="100" height="89" alt="" title="" border="0" /></a>The Classic 8 Conference, featuring some of the state's premier girls golfers, gathered for a mini meet Sept. 12 at Western Lakes Golf Club in Pewaukee.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                            <h4>Football</h4>
                                                    <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/sports/129622263.html" >Warhawks strike first, fast and last</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                                            <p><a href='http://www.livinglakecountry.com/lakecountryreporter/sports/129622263.html' ><img src="http://media.livinglakecountry.com/images/100*87/mjs-memorial10-3-ofx-wood-memorial10.jpg" width="100" height="87" alt="" title="" border="0" /></a>If there&rsquo;s a criticism of the new high-powered offense run by first-year coach Greg Malling&rsquo;s Arrowhead varsity football team, it&rsquo;s that they score too quickly. <span class='comments'><a href='http://www.livinglakecountry.com/lakecountryreporter/sports/129622263.html?page=1'>(3)</a></span></p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                            <h4>Cross country</h4>
                                                    <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/sports/129660638.html" >Seidel runs fastest time in state history</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/lakecountryreporter/sports/129660638.html' ><img src="http://media.livinglakecountry.com/images/100*59/cni-lcr-cc2-0915-pz-s.jpg" width="100" height="59" alt="" title="" border="0" /></a>In her three years of running in the prestigious Arrowhead Cross Country Invitational, one of the top meets in the state each year, University Lake School's Molly Seidel has been nothing less than outstanding.</p>                                                                <div class="story_assets">
        <ul>
        <li>
                <span class="asset photos">Photo gallery:&nbsp;</span>
                <a href="http://www.germantownnow.com/multimedia/photos/129499893.html">Arrowhead CC Invite</a>
        </li>
        </ul>
    </div> <!-- end div class="story_assets" -->
                <div class="clearleft"></div>
                </div>
                        
    

                    </div>
    </div>
    






	
	

   



	
						


    <div class="side_section_container graphic latestphotogalleries">
    <div class="side_container_01">
        <div class="title">Staff Photo Galleries
        </div>
        <div class="side_container_01_content" style="overflow:hidden;">
            <div class="side_container_01_intro"><p>See&nbsp;the latest news in photos by clicking on the photos below. <strong><a href="http://www.livinglakecountry.com/multimedia/photos/">Browse all galleries</a></strong></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_56736527_0" class="photo_grid">


                                

                                        

                                        

                                        

        

    
    

    <ul  class="only num_columns_2">
                    
                                                                                                                                        

            <li  class="first first_column">
                <a href="http://www.livinglakecountry.com/multimedia/photos/129879998.html" class="thumb_wrap"><img src="http://media.livinglakecountry.com/images/196*315/jcpg+lcrkmi_911_ceremony_3970.jpg" /></a>
                                    

                                                                    <a href="http://www.livinglakecountry.com/multimedia/photos/129879998.html">911 Gallery</a>
                                                </li>    
                    
                                                                                                                                        

            <li  class="last_column">
                <a href="http://www.livinglakecountry.com/multimedia/129837563.html" class="thumb_wrap"><img src="http://media.livinglakecountry.com/images/315*210/25687469-jcpg+mwc_bluegrassfest_9342.jpg" /></a>
                                    

                                                                    <a href="http://www.livinglakecountry.com/multimedia/129837563.html">East Troy Bluegrass Festival</a>
                                                </li>    
                    
                                                                                                        

            <li  class="first_column">
                <a href="http://www.livinglakecountry.com/multimedia/photos/129808248.html" class="thumb_wrap"><img src="http://media.livinglakecountry.com/images/315*272/jcpg+kmh_l-reynolds-tn_5864.jpg" /></a>
                                    

                                                                    <a href="http://www.livinglakecountry.com/multimedia/photos/129808248.html">Tennis: Kettle Moraine at Catholic Memorial</a>
                                                </li>    
                    
                                                                                                        

            <li  class="last last_column">
                <a href="http://www.livinglakecountry.com/multimedia/photos/129734138.html" class="thumb_wrap"><img src="http://media.livinglakecountry.com/images/315*280/jcpg+ahs_gunnison-gf_5024.jpg" /></a>
                                    

                                                                    <a href="http://www.livinglakecountry.com/multimedia/photos/129734138.html">Girls golf: Classic 8 mini meet</a>
                                                </li>    
            </ul>
</div>
<script src="http://www.livinglakecountry.com/includes/ji_gallery_grid.js" type="text/javascript"></script>            
<script type="text/javascript">
	$("#photo_grid_56736527_0").ji_gallery_grid({numPages:1});	
</script>

                    </div>
    </div>
</div>




	
	

   



	
						




<div class="feature">
<div class="title">Weekend Happenings</div>
<div class="headlines">
<h3 class="lead">
<div style="margin: 0in 0in 10pt">
<div style="margin: 0in 0in 10pt">
<div style="margin: 0in 0in 10pt">
<div style="margin: 0in 0in 10pt">&nbsp;Featured this week:&nbsp;&nbsp;&nbsp;</div>
</div>
</div>
</div>
</h3>
<ul>
    <li><strong><span>Wine Tasting fundraiser:&nbsp; </span></strong><span>5:30-7 p.m., 7:30-9 p.m. Sep. 16, Vino Etcetera!, 120 E. Wisconsin Ave., Oconomowoc. Wine expert Corienne Winkels will discuss food and wine pairings while guests sample six wines and appetizers. Proceeds will go toward the renovation of the library&rsquo;s teen space. $15 in advance, $20 at the door.</span></li>
    <li><strong>Shrimp/Fish Fry:&nbsp; </strong>4:30-7 p.m. Sep. 16, Peace Lutheran Church &amp; Academy, W240 N6145 Maple Ave, Sussex. Dine-in or carryout, $9.50, $8.50, $7.50 and $3.50 (hotdog meal) <a href="http://www.peacesussex.org/">http://www.peacesussex.org/</a>.</li>
    <li><strong><span>Annual Harvest Festival: </span></strong><span>12:30 p.m. Sep. 17, North Lake Fireman&rsquo;s Park, Park Road, North Lake. Festival throughout the day includes flea market, food drive and parade starting at 12:30 p.m. to Blessed Teresa Church in North Lake.</span></li>
    <li><strong><span>Fall Harvest Fest:&nbsp;</span></strong><span> 12-5 p.m. Sep. 18, Clark House Museum, 206 E. Wisconsin Ave., Pewaukee. Event, hosted by the Pewaukee Area Historical Society, includes entertainment, food, rummage sale and more., http://www.pewaukeehistory.org/.&nbsp;</span>&nbsp;</li>
</ul>
<p><strong><em>Updates to this calendar are made weekly&nbsp;Monday afternoon.</em></strong></p>
<p>&nbsp;</p>
<div>&nbsp;<a href="http://www.livinglakecountry.com/blogs/staffblogs/weekend_happenings.html">See all of the latest events</a>&nbsp;&nbsp;</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>



	
	

   



	
						

            



            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Living Sunday</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/living/129470638.html" >57 roles, 6 performers, 1 room</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/living/129470638.html' ><img src="http://media.livinglakecountry.com/images/100*66/jcpg+lvg_play_0911.jpg" width="100" height="66" alt="" title="" border="0" /></a>&quot;Sometimes a play is more than just a play. Art is defined by man's interpretation of life's experiences.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/living/129450883.html" >Historical Society enjoys life on the square</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/living/129450883.html' ><img src="http://media.livinglakecountry.com/images/100*66/JCPG_KML_ETHISTORICALSOCIETY_9184_25610837.JPG" width="100" height="66" alt="The East Troy Area Historical Society has a home in the Kubicki Heritage Center on the village square." title="The East Troy Area Historical Society has a home in the Kubicki Heritage Center on the village square." border="0" /></a>For 25 years the East Troy Area Historical Society (ETAHS) did not have a home. After raising funds for three years, and through the generosity of the Henry Kubicki family, the Kubicki Historical Heritage Center has been open on the East Troy Square since May 2010.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    

                            <div class="feature_content"><p><a href="http://www.livinglakecountry.com/living">Read more articles from Lake Country and Kettle Moraine Living</a></p></div>
                    </div>
    </div>
    






	
	

   



	
						




<div class="feature">
<div class="title">Special Sections</div>
<div class="headlines">
<table border="0" cellspacing="1" cellpadding="5" width="300" align="center">
    <tbody>
        <tr>
            <td>
            <p style="text-align: center"><a target="_blank" href="http://jsonline.p2ionline.com/sitebase/index.aspx?adgroupid=200116&amp;view=double"><img border="0" alt="Our Heroes 9-11 Tribute to local police and fire departments" align="bottom" width="140" height="185" src="http://media.jsonline.com/images/911coverfinal.jpg" /></a></p>
            <p style="text-align: center"><strong>Our Heroes 9-11 Tribute</strong></p>
            </td>
            <td style="text-align: center">
            <p><a target="_blank" href="http://jsonline.p2ionline.com/sitebase/index.aspx?adgroupid=199836&amp;view=double"><img border="0" alt="30West September" align="bottom" width="140" height="185" src="http://media.jsonline.com/images/30West+cover+0911+web.jpg" /></a></p>
            <strong><strong>
            <p style="text-align: center"><strong>30West September</strong></p>
            </strong></strong></td>
        </tr>
        <tr>
            <td style="text-align: center">
            <p><a target="_blank" href="http://jsonline.p2ionline.com/sitebase/index.aspx?adgroupid=199601&amp;view=double"><img border="0" alt="2011 Gridiron Guide" align="bottom" width="140" height="185" src="http://media.jsonline.com/images/jcpg+sps_footballcover_0818.jpg" /></a></p>
            <strong><strong>
            <p style="text-align: center"><strong>2011 Gridiron Guide</strong></p>
            </strong></strong></td>
            <td style="text-align: center">
            <p><a target="_blank" href="http://jsonline.p2ionline.com/sitebase/index.aspx?adgroupid=199140&amp;view=double"><img border="0" alt="Destination Oconomowoc" align="bottom" width="140" height="185" src="http://media.jsonline.com/images/O+Magazine+cover+FINAL.jpg" /></a></p>
            <p><strong>Living Oconomowoc</strong></p>
            </td>
        </tr>
    </tbody>
</table>
<p style="text-align: center">&nbsp;<strong><a target="_blank" href="http://jsonline.p2ionline.com/sitebase/index.aspx?adgroupid=197469&amp;view=arch">See all special sections</a></strong></p>
</div>
</div>



	
	

               </div>
               <div id="centerRight">
   



	
						

            






            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Lake Country Top Stories</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/kettlemoraineindex/news/129799973.html" >Sobering reality brought to life</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/kettlemoraineindex/news/129799973.html' ><img src="http://media.livinglakecountry.com/images/100*76/25697591-jcpg+kmi_lcr_mockcrash_9538.jpg" width="100" height="76" alt="" title="" border="0" /></a>Daniel Bruckbauer sat handcuffed, head tipped back, eyes to the ceiling, preventing the tears welling in his eyes from falling down his face as he listened to his classmate talk of all the things she would not do and the memories she would never make. Before that he heard the mother of his classmate read a letter to her deceased daughter, telling her she would never see her graduate from college, would never see her get married. The reality of a crime he did not commit sank in and the grim outcome flashed across the stage at the entire 2012 Kettle Moraine High School class as the voice of Sydney Washcovick bid her peers farewell with her smiling face projecting across the auditorium.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/kettlemoraineindex/news/129799968.html" >Summit, Dousman fire mergers are complex</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>A proposal to consolidate the Dousman and Summit fire departments is putting Village of Dousman residents and elected officials between a rock and a hard place.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/oconomowocfocus/news/129824368.html" >Free clinic gets $10K boost from AMA grant</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                                            <p><a href='http://www.livinglakecountry.com/oconomowocfocus/news/129824368.html' ><img src="http://media.livinglakecountry.com/images/75*100/jcpg+ocf_reich_mary_2011(2).jpg" width="75" height="100" alt="" title="" border="0" /></a><b>City of Oconomowoc - </b>The Lake Area Free Clinic is one of only eight free clinics in the country tapped to receive a $10,000 grant from the American Medical Association (AMA) to benefit its efforts working with diabetic patients.<span class='comments'><a href='http://www.livinglakecountry.com/oconomowocfocus/news/129824368.html?page=1'>(2)</a></span></p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/oconomowocfocus/news/129821063.html" >Police help lady riders sharpen cycle skills</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/oconomowocfocus/news/129821063.html' ><img src="http://media.livinglakecountry.com/images/100*75/jcpg+ocf_ridersclass2_0913.jpg" width="100" height="75" alt="" title="" border="0" /></a><b>City of Oconomowoc - </b>More than two dozen women are taking advantage of a special program designed to improve their motorcycle riding skills.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/sussexsun/opinion/129740448.html" >Incorporation review rejected</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p><b>Waukesha -</b> It took Waukesha County Circuit Court Judge Donald J. Hassin Jr. about eight minutes last week to toss out of court <a target="_blank" href="http://Lisbon-Inc.org.'s">Lisbon-Inc.org.'s</a> latest effort at incorporating the Town of Lisbon into a village.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    

                    </div>
    </div>
    






	
	

   



	
						


            <!-- Begin JavaScript Widget -->
<div class="side_section_container javascript">
        <div class="side_container_01"> 
                <div class="title">Recent Lake Country Videos</div>
<div class="side_container_01_content"><div class="side_container_01_content scores">                        <!-- JavaScript here -->
<!-- Start of Brightcove Player -->
<!--
By use of this code snippet, I agree to the Brightcove Publisher T and C 
found at http://corp.brightcove.com/legal/terms_publisher.cfm. 
-->

<script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>
<object id="myExperience" class="BrightcoveExperience">
  <param name="bgcolor" value="#FFFFFF" />
  <param name="width" value="290" />
  <param name="height" value="478" />
  <param name="playerID" value="12075788001" />
  <param name="publisherID" value="24595381001"/>
  <param name="isVid" value="true" />
  <param name="isUI" value="true" />
</object>

<!-- End of Brightcove Player -->

<p><a href="http://www.livinglakecountry.com/multimedia/video/42747957.html">See our video archive</a></p>
</div></div>
        </div>
    </div>
    <!-- End JavaScript Widget -->


	
	

   



	
						

            





            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Lake Country Reporter</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/policeandcourts/129807373.html" >Town OKs Great Lakes water</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p><b>Town of Delafield </b>- A corner of the town may be serviced by Lake Michigan water as the Town Board on Tuesday agreed to allow a roughly 1,200-acre area of the town be included in the City of Waukesha water service area.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/news/129804663.html" >North Lake launch hearing next week</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                    <p>A state administrative law judge has scheduled a three-day contested hearing beginning Monday, Sept. 19, at the state office building, 141 NW. Barstow St., Waukesha, that could determine the fate of plans by the Department of Natural Resources (DNR) to build a public access boat launch on the northwest shore of North Lake.<span class='comments'><a href='http://www.livinglakecountry.com/lakecountryreporter/news/129804663.html?page=1'>(1)</a></span></p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/policeandcourts/129806993.html" >Handyman accused of taking advantage of woman's trust</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                    <p><b>Village of Pewaukee </b>- A handyman misused the trust of his employer and allegedly stole her car and ATM card.<span class='comments'><a href='http://www.livinglakecountry.com/lakecountryreporter/policeandcourts/129806993.html?page=1'>(1)</a></span></p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/news/129652203.html" >Creation of Village of Pewaukee CDA delayed</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                    <p><b>Village of Pewaukee - </b>The Village Board has deferred action on a proposal to create a community development authority (CDA) to a future board meeting. <span class='comments'><a href='http://www.livinglakecountry.com/lakecountryreporter/news/129652203.html?page=1'>(2)</a></span></p>
                                                <div class="clearleft"></div>
                </div>
                        
    

                            <div class="feature_content"><p><a href="http://www.livinglakecountry.com/lakecountryreporter/news">Read more articles from the Lake Country Reporter</a></p></div>
                    </div>
    </div>
    






	
	

   



	
						

            





            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Oconomowoc Focus</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/oconomowocfocus/news/129821428.html" >O'Brien Homes constructs classroom experience</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/oconomowocfocus/news/129821428.html' ><img src="http://media.livinglakecountry.com/images/100*75/jcpg+ocf_bt3_0908.jpg" width="100" height="75" alt="" title="" border="0" /></a><b>Oconomowoc Area Schools -</b> Oconomowoc High School's Building Trades III program is a course that brings new meaning to the term hands-on learning.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/oconomowocfocus/news/129821253.html" >Teachers enroll in summer school too</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/oconomowocfocus/news/129821253.html' ><img src="http://media.livinglakecountry.com/images/100*55/jcpg+ocf_columbia_0915.jpg" width="100" height="55" alt="" title="" border="0" /></a><b>Oconomowoc Area Schools - </b>It's not only students who go to summer school.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/oconomowocfocus/news/129819933.html" >Brady Hackbarth Park Fund continues</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/oconomowocfocus/news/129819933.html' ><img src="http://media.livinglakecountry.com/images/100*75/jcpg+ocf_hackbrath_0915.jpg" width="100" height="75" alt="" title="" border="0" /></a><b>Ixonia -</b> Brady Hackbarth had a wish, and it was a big one. He wished for a place where children could play, a place where kids can be themselves and play with their peers, a destination they can look at and say, &quot;I want to go there.&quot; His last wish was for a playground that he and all children could enjoy for years to come.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/lakecountryreporter/news/129654343.html" >Ailing TIF may get boost from Pabst TIF</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p><b>City of Oconomowoc -</b> Taxpayers may not have to worry about bailing out the dormant downtown tax incremental financing district (TIF No. 4) if Wisconsin legislators approve an amendment to a state statute on TIFs. </p>
                                                <div class="clearleft"></div>
                </div>
                        
    

                            <div class="feature_content"><p><a href="http://www.livinglakecountry.com/oconomowocfocus/news">Read more articles from the Oconomowoc Focus</a></p></div>
                    </div>
    </div>
    






	
	

   



	
						

            





            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Mukwonago Chief</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/mukwonagochief/news/129726123.html" >A mother's fight</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/mukwonagochief/news/129726123.html' ><img src="http://media.livinglakecountry.com/images/100*56/25687625-jcpg+mwc_macfarlane_sisters.jpg" width="100" height="56" alt="" title="" border="0" /></a>Any mom with four children younger than 10 certainly has her hands full. But imagine being the mom of four small children who is facing a life-threatening condition while struggling to make ends meet. That is the challenge that Mukwonago resident Becky McFarlane and her family are facing.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/mukwonagochief/news/129726113.html" >Construction firm to pay $45K in fines</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                    <p>Berg Construction, 461 River Crest Court in Mukwonago, will have five years to pay $45,000 in forfeitures, surcharges, costs, and attorneys fees after the Waukesha County Circuit Court entered a judgment against the company. <span class='comments'><a href='http://www.livinglakecountry.com/mukwonagochief/news/129726113.html?page=1'>(1)</a></span></p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/mukwonagochief/news/129723933.html" >MHS band holds first marching band festival</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>The Mukwonago High School marching band, the Phantom Legion, will hold the inaugural Phantom Phest Marching Band Festival on Saturday, Sept. 17.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/mukwonagochief/news/129299418.html" >Chicago woman in Eagle high-speed crash</a>
                                        </h3>
                                
                                                        


                                                                            
        
                        
                                                                    <p>A 28-year-old Chicago woman received several citations, including drunken driving, after crashing her minivan into a fire hydrant and a pickup truck before coming to a stop when she hit a telephone pole at 8:17 p.m. Aug. 25 on Elkhorn Road at Railroad Street in the Village of Eagle.<span class='comments'><a href='http://www.livinglakecountry.com/mukwonagochief/news/129299418.html?page=1'>(6)</a></span></p>
                                                <div class="clearleft"></div>
                </div>
                        
    

                            <div class="feature_content"><p><a href="http://www.livinglakecountry.com/mukwonagochief/news/">Read more articles from the Mukwonago Chief</a></p></div>
                    </div>
    </div>
    






	
	

   



	
						

            





            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Sussex Sun</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/sussexsun/news/129740858.html" >Keeping kids healthy this school year</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>Kids are back in school, and germs are multiplying. And while students are no doubt worried about their grades, parents may be worried about keeping their kids healthy this school year. </p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/sussexsun/news/129740898.html" >Local Civil War stories shared over tea</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                                            <p><a href='http://www.livinglakecountry.com/sussexsun/news/129740898.html' ><img src="http://media.livinglakecountry.com/images/100*68/jcpg+sxs_civilwar_tea_0914.jpg" width="100" height="68" alt="" title="" border="0" /></a>The Sussex-Lisbon Area Historical Society (SLAHS) held a Civil War Tea on Sunday. This year marks the 150th anniversary of the American Civil War and the tea was part of a continuing four-year event to commemorate Sussex and Lisbon's participation in the conflict.</p>                                                                    <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/sussexsun/news/129740933.html" >Foundation presents awards, grants to Hamilton staff</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>The Hamilton Education Foundation presented 18 Hamilton School District staff members with awards at the Aug. 31 Back-to-School Breakfast. Five teachers were presented with A Class Act tributes, another nine teachers were awarded New Horizons Grants and four support staff members received ROSS awards.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/sussexsun/news/129308243.html" >Sussex's 2012 budget looks toward future</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>Sussex Village Administrator Jeremy Smith is happy the calendar has changed over to the month of September.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    

                            <div class="feature_content"><p><a href="http://www.livinglakecountry.com/sussexsun/news">Read more articles from the Sussex Sun</a></p></div>
                    </div>
    </div>
    






	
	

   



	
						

            





            
		
				
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Kettle Moraine Index</div>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
            
            





    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/kettlemoraineindex/news/129798043.html" >Fire official: merge should be phased in</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>The president of the governing body of Lake Country Fire and Rescue said the board should remain "in the back of the room" during any negotiations involving the possible consolidation of the Summit Fire Protection District into Lake Country Fire and Rescue.</p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/kettlemoraineindex/news/129802448.html" >St. Paul School meets Smart Board goal</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>The first day of school brought an unexpected surprise for St. Paul School kindergarten students. Upon entering the classroom, it was hard for the 5-year-old students not to notice the newly installed white, smooth piece of technology called a Smart Board. </p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/kettlemoraineindex/news/129798033.html" >Celebrate Harvest Fest in North Prairie this weekend</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p>The Village of North Prairie will celebrate its annual Harvest Fest from Friday through Sunday, Sept. 16 -18 at Veterans Park, behind the Municipal Building at130 N. Harrison St. The park is accessible off Highway 59. </p>
                                                <div class="clearleft"></div>
                </div>
                        
    	        
                                            <div class="features_story contentblock">
                

                                                                            <h3 class="headline">
                                            <a href="http://www.livinglakecountry.com/kettlemoraineindex/news/129377558.html" >Gas station restrictions back in play in Summit</a>
                                        </h3>
                                
                                                        


                                                                            
        
    
                                                                    <p><b>Village of Summit - </b>After residents turned out in force to protest an update to the village's master plan that would have allowed for the construction of gas stations, the Village Board directed the Plan Commission to reinstate their restriction. </p>
                                                <div class="clearleft"></div>
                </div>
                        
    

                            <div class="feature_content"><p><a href="http://www.livinglakecountry.com/kettlemoraineindex/news">Read more articles from the Kettle Moraine Index</a></p></div>
                    </div>
    </div>
    






	
	

               </div>
               <div style="clear:both;"></div>
               <div id="bottomAds">
               </div>
          </div>


     </div>
</div>
    <div id="rightWell">
   

	

	

	
						


    



    
    <div class="first block ad Yahoo id44004072 size300x250">
         <h4>advertisement</h4>
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("bb_slot");
         // -->
      </script>
   </div>





	
	

	
						


    



    
    <div class="block ad Yahoo id43420572 size300x100">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("tb_slot");
         // -->
      </script>
   </div>





	
	

	
						




<div class="feature">
<div class="headlines">
<table border="5" cellspacing="1" cellpadding="5" width="300" align="center">
    <tbody>
        <tr>
            <td bgcolor="#dde1ea">
            <h3 style="text-align: center; color: red"><a target="_blank" href="http://media.jsonline.com/documents/30+West+Online+revised1.pdf">Offer available to&nbsp;Waukesha County's Lake Country residents&nbsp;only</a></h3>
            </td>
        </tr>
        <tr>
            <td>
            <p style="text-align: center">&nbsp;<strong><a target="_blank" href="http://media.jsonline.com/documents/30+West+Online+revised1.pdf"><img border="0" hspace="5" alt="Click here for a 30 West subscription" vspace="5" width="275" height="92" src="http://media.jsonline.com/images/30+west+Susbscription+logo.jpg" /></a></strong></p>
            </td>
        </tr>
    </tbody>
</table>
<p style="text-align: left">&nbsp;</p>
</div>
</div>



	
	

	
						


            <!-- Begin JavaScript Widget -->
<div class="side_section_container javascript">
        <div class="side_container_01"> 
<div class="side_container_01_content"><div class="side_container_01_content scores">                        <!-- JavaScript here -->
<iframe src="http://graphics.jsonline.com/classifieds/Realty_Execs/oconomowoc.html" frameborder="0" height="297px" width="290px" marginwidth="0px" marginheight="0px" scrolling="no"></iframe>
</div></div>
        </div>
    </div>
    <!-- End JavaScript Widget -->


	
	

	
						




<div class="feature">
<div class="title">Autumn Coupon book</div>
<div class="headlines">
<p style="text-align: center"><a target="_blank" href="http://www.jcpgroup.com/ebooks/lakecountry/AutumnCouponBook/index.html#"><img border="0" width="300" height="100" alt="" src="http://media.jsonline.com/images/coupon+clickthrough+autumn.jpg" /></a>&nbsp;</p>
</div>
</div>



	
	

	
						


    



    
    <div class="block ad Yahoo id55779437 size300x100">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("tb_mid_slot");
         // -->
      </script>
   </div>





	
	

	
						


    



    
    <div class="block ad Yahoo id55779202 size300x100">
      <script type="text/javascript">
         <!--
         yld_mgr.place_ad_here("tb_bot_slot");
         // -->
      </script>
   </div>





	
	

	
						




<div class="feature">
<div class="title">Construction Updates</div>
<div class="headlines">
<p style="text-align: center"><a href="http://www.livinglakecountry.com/117769348.html"><img border="0" alt="" vspace="5" align="bottom" width="250" height="150" src="http://media.journalinteractive.com/images/highway+construction.jpg" /></a></p>
<p style="text-align: left"><a href="http://www.livinglakecountry.com/117769348.html">Get the latest on&nbsp;I-94, Hwy&nbsp;83 and Hwy P&nbsp;construction</a></p>
</div>
</div>



	
	

	
						




<div class="feature">
<div class="title">Newsletter/Facebook/Twitter</div>
<div class="headlines">
<p style="text-align: center"><a target="_blank" href="http://www.jsonline.com/newsletters.html"><img border="0" hspace="5" alt="Click here to sign up for the Living Lake Country newsletter." vspace="1" width="40" height="40" src="http://media.journalinteractive.com/images/newsletter2logo.jpg" /></a>&nbsp;<a target="_blank" href="http://www.facebook.com/pages/Living-Lake-Country/155874144456588"><img border="0" hspace="5" alt="" vspace="1" width="40" height="40" src="http://media.journalinteractive.com/images/facebook+image.jpg" /></a>&nbsp;<a target="_blank" href="http://twitter.com/LakeCountryPubs"><img border="0" hspace="5" alt="" vspace="1" width="40" height="40" src="http://media.journalinteractive.com/images/twitter+t+logo2.jpg" /></a></p>
<p><a target="_blank" href="http://www.jsonline.com/newsletters.html">Sign up for the Living Lake Country newsletter here</a></p>
<p><a target="_blank" href="http://www.facebook.com/pages/Living-Lake-Country/155874144456588">Find us on Facebook</a></p>
<p><a target="_blank" href="http://twitter.com/LakeCountryPubs">Follow us on Twitter</a></p>
</div>
</div>



	
	

	
						




<div class="feature">
<div class="title">Sponsored Blog</div>
<div class="headlines">
<p style="text-align: center"><a target="_blank" href="http://theconstructionguru.net/"><img border="0" alt="Welcome to my informational blog about residential and light commercial remodeling, maintenance and construction. I&rsquo;d like to hear from you. Just click this link and e-mail your questions for me and our team of experts to answer." width="300" height="103" src="http://media.jsonline.com/images/constrution+guru.png" /></a></p>
</div>
</div>



	
	

	
						


    	                    

        <div class="features">
                    <div class="title">Community Blogs</div>
                <div class="features_content">
                            <div class="features_story contentblock"><p>Lake Country residents share their views on news, happenings and current events.</p></div>
                                
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/fighting_liberal_lies.html" ><img src="http://media.livinglakecountry.com/images/65*65/hayett.jpg" width="65" height="65" alt="" title="" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/fighting_liberal_lies.html" >Fighting Liberal Lies!</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:jhayett@wi.rr.com'>Jim Hayett</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/129915603.html" >Another slap in the face.</a>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/its_hemmer_time.html" ><img src="http://media.livinglakecountry.com/images/65*65/LLCBlogAuthor_ahemmer.jpg" width="65" height="65" alt="" title="" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/its_hemmer_time.html" >It's Hemmer Time</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:ahemmer@wi.rr.com'>Amy L. Geiger-Hemmer</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/129590338.html" >9/11/01</a>
                                                                                    <span class="comments"><a href="http://www.livinglakecountry.com/blogs/communityblogs/129590338.html#comments">(34)</a></span>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/hears_to_life.html" ><img src="http://media.livinglakecountry.com/images/65*65/LLCBlogAuthor_tklink.jpg" width="65" height="65" alt="" title="" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/hears_to_life.html" >"Hear's" to Life!</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:tamiklink@gmail.com'>Tami Klink</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/129646998.html" >Cochlear CI500 Recall Information</a>
                                                                                    <span class="comments"><a href="http://www.livinglakecountry.com/blogs/communityblogs/129646998.html#comments">(1)</a></span>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/eagles_eye.html" ><img src="http://media.livinglakecountry.com/images/65*65/LLCBlogAuthor_aneuhauser.jpg" width="65" height="65" alt="" title="" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/eagles_eye.html" >Eagle's Eye</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:aneuhauser@wi.rr.com'>Al Neuhauser</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/129592403.html" >A 9/11 Retrospective</a>
                                                                                    <span class="comments"><a href="http://www.livinglakecountry.com/blogs/communityblogs/129592403.html#comments">(21)</a></span>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/community_splashes.html" ><img src="http://media.livinglakecountry.com/images/65*65/LLCBlogAuthor_kroskopf.jpg" width="65" height="65" alt="" title="" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/community_splashes.html" >Community Splashes</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:roskopfs@gmail.com'>Kurt Roskopf</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/125964373.html" >Heritage Weekend August 13th and 14th</a>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/A_Day_in_Ion_Square.html" ><img src="http://media.livinglakecountry.com/images/65*65/JCPG_KRISTENSEN-ANDY1_JA_2010_19858919.JPG" width="65" height="65" alt="Andy Kristensen" title="Andy Kristensen" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/A_Day_in_Ion_Square.html" >A Day in Ion Square</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:theusedgreenblink@yahoo.com'>Andy Kristensen</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/123305508.html" >A Short Story: "There's A Bad Moon on the Rise"</a>
                                                                                    <span class="comments"><a href="http://www.livinglakecountry.com/blogs/communityblogs/123305508.html#comments">(31)</a></span>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
                                    


    
                                                        

                                                        
            <div class="features_story contentblock">
                                                            <div class="features_story_left_content">
                                                                            <a href="http://www.livinglakecountry.com/blogs/communityblogs/Lake_Country_Womens_Club.html" ><img src="http://media.livinglakecountry.com/images/65*65/JCPG_LCP_2ENRIGHT-TRACY_0122_19351315.JPG" width="65" height="65" alt="Tracy Enright" title="Tracy Enright" border="0" /></a>
                                                                    </div>
                            
                            <div class="features_story_right_content">
                                <p>
                                                                                  <strong><a href="http://www.livinglakecountry.com/blogs/communityblogs/Lake_Country_Womens_Club.html" >Lake Country Women's Club</a></strong><br/>
                                                                                                                <span>


			By <a href='mailto:tracyenright2003@yahoo.com'>Tracy Enright</a>	
</span><br/>
                                        <a href="http://www.livinglakecountry.com/blogs/communityblogs/123203948.html" >Lake Country Art Festival</a>
                                                                                                            </p>
                            </div><div class="clear_left"></div>
</div>
    
              
<div class="clear_left"></div>
                            <div class="features_story contentblock"><p style="text-align: center">LivingLakeCountry.com features more than a dozen community bloggers - a group of volunteer conversation leaders who are up on the latest topics and never short on an opinion. Just a few are pictured here. Check out the rest and see what they have to say!<br />
<br />
<a href="http://www.livinglakecountry.com/blogs"><font size="2">View All Blogs</font></a><br />
<br />
<a target="_blank" href="/contactus/50249642.html">Discussion Guidelines</a><br />
<br />
Do you want to become a&nbsp;Community Blogger? LivingLakeCountry.com welcomes your thoughts and opinions. Contact us for more information:<br />
<a href="mailto:lakenews@jcpgroup.com">I want to blog</a></p></div>
                </div>
    </div>
    <!-- End Most Recent Blogs-->
    












	
	

	
						




<div class="feature">
<div class="title">Editors' Choice Awards</div>
<div class="headlines">
<table border="5" cellspacing="1" cellpadding="5" width="300" align="center">
    <tbody>
        <tr>
            <td bgcolor="#dde1ea">
            <h3 class="lead" style="text-align: center"><strong>Posted Friday, Sept. 9</strong></h3>
            </td>
        </tr>
        <tr>
            <td>
            <p style="text-align: left"><strong>Photo of the Week by Scott Ash:</strong></p>
            <p style="text-align: center"><strong><a href="http://www.livinglakecountry.com/multimedia/photos/129246813.html#id_55750628"><img border="0" hspace="5" vspace="5" align="bottom" width="200" height="261" alt="" src="http://media.jsonline.com/images/jcpg+kmh_wknn-wood-blackburn-fb_1437.jpg" /></a></strong></p>
            <p style="text-align: left"><strong>PENALTY PLAY -&nbsp;</strong>Kettle Moraine defensive back Derrick Wood (right) rips off the helmet of Waukesha North's CJ Blackburn (7) during the game at Kettle Moraine on Friday, Sept. 2, 2011. The Lasers were penalized for unsportsmanlike conduct on the play.</p>
            <p style="text-align: left">&nbsp;</p>
            <p style="text-align: left"><strong>News or Feature Story of the Week by&nbsp;Chuck Delsman:&nbsp;&nbsp;</strong><a href="http://www.livinglakecountry.com/lakecountryreporter/news/128327693.html">Taraska returns to AHS</a></p>
            <p style="text-align: left">&nbsp;</p>
            <p style="text-align: left"><strong>Sports Story of the Week by Chris Schuck:&nbsp;&nbsp;</strong><a href="http://www.livinglakecountry.com/kettlemoraineindex/sports/129378503.html">West spoils party at KM</a></p>
            </td>
        </tr>
    </tbody>
</table>
<p style="text-align: left">&nbsp;</p>
</div>
</div>



	
	

	
						


    



<div class="side_section_container graphic">
    <div class="side_container_01">

                <div class="title">Your Photos</div>
                
        <div class="side_container_01_content">

                                                


            
        
                                    
                        
                        

                    
                                    


                        
        
        
    
                                                
        
                    
    
    
                                                                
                <div class="indexPhotoCaption">
                     <div style="text-align:center;"><a href="http://www.livinglakecountry.com/multimedia/photos/40095327.html"><img src="http://media.livinglakecountry.com/images/290*217/kevinkneebreak.jpg" style="border:none;" /></a></div>


	<div class="credit">
				Lake Country Martial Arts
						- Hartland
						, WI
						</div>


                </div>

    

        

            
                <div><p><b><br />
MORE:</b> <a href="/multimedia/photos/40095327.html">See full gallery<br />
</a></p>
<p><b>SUBMIT:</b> <a href="/multimedia/photos/40095327.html?submit=y">Post Your Photos now<br />
<br />
</a></p></div>
                
        </div>
    </div>
</div>





	
	

	
						

            



























            
		
			
	    	    
    <div class="feature">
                    <div class="title"><div style="float:left;">Your Stories</div>
                            <a style="float:right;" href="/rss?c=y&list=38719202"><img src="http://media.livinglakecountry.com/designimages/feed-icon-16x16_JSO.gif" border="0" height="16" width="16"></a>
                        <br style="clear:both;" />
            </div>
        
        <div class="headlines">
                            <div class="feature_content"><p><img hspace="10" border="0" align="left" alt="" src="http://media.journalinteractive.com/designimages/yourstories.JPG" /></p>
<p><font size="2">Do you have news or an event that you would like to share with the community? Whether it's a community organization, a business, a local school, or a notable neighbor, we'd love to hear about it!!</font></p></div>
                <br/>
            
            





    	        
                                                            <div class="stacked_headlines"><ul>
                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129797448.html" >
Last collection: AHS Football Field of Food Drive Friday, Sept. 16</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129792553.html" >
“Ladies Educational Night Out” Promises Fun, Learning, Relaxation</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129723033.html" >
UW-Waukesha Continuing Education Offers Course to Boost Success Personally and Professionally</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129647308.html" >
Retzer Nature Center's 25th Apple Harvest Festival is September 17</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129524008.html" >
Patsy Cline Live! Today, Tomorrow & Forever at the OAC Sept. 17 & 18</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129523888.html" >
Inaugural Shave, Brave, Save event hosted by The Giving Three </a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129523763.html" >
Santosha Yoga Grand Opening - Sept. 24, 2011</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129455468.html" >
Artists!- Don’t Miss the POURS demonstration</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129455248.html" >
Christ the King Church of Delafield Hosts LinkedIn Seminar for Job Seekers</a>
</li>
            
    	        
                                        <li>

                        <a href="http://www.livinglakecountry.com/userstoriessubmitted/129455198.html" >
Foundation presents awards, grants to Hamilton staff</a>
</li>
            
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        </ul></div>


                            <div class="feature_content"><p><br />
<b>MORE: </b><a href="/userstoriessubmitted">See the rest of Your Stories</a><br />
<br />
<b>SUBMIT: </b><a href="/userstoriessubmitted/submit">Post Your Story now<br />
<br />
</a></p></div>
                    </div>
    </div>
    






	
	

	
						




<div class="feature">
<div class="headlines">
<p align="center"><a target="_blank" href="http://media.jsonline.com/documents/Lake+Country+Store+Drops.pdf "><img border="0" alt="" src="http://media.journalinteractive.com/designimages/Newstand_Location_Button.jpg " /></a></p>
<p style="text-align: center"><a href="http://www.livinglakecountry.com/contactus/40191227.html"><img border="0" alt="" src="http://media.journalinteractive.com/designimages/New_LC_logo_CMYK_sm.jpg" /></a><br />
<a href="http://www.livinglakecountry.com/contactus/39311132.html"><img border="0" alt="" src="http://media.journalinteractive.com/designimages/Mukwonago.JPG" /></a></p>
<p align="center"><a target="_blank" href="http://jsmm.p2ionline.com/specialsections/sitebase/index.aspx?adgroupid=134326&amp;view=double&amp;area=milwaukeewest"><img border="0" alt="" width="300" height="75" src="http://media.journalinteractive.com/images/Metroparent+West+blue.jpg" /></a><br />
<br />
&nbsp;</p>
</div>
</div>



	
	

	
						




<div class="feature">
<div class="title">Legal Notices</div>
<div class="headlines">
<p><a href="wisconsin.arcasearch.com/us/wi/?paper=uswi100"><img hspace="5" height="36" border="0" align="middle" width="40" src="http://media.journalinteractive.com/images/legals.jpg" alt="" /></a><a href="http://www.wisconsinpublicnotices.org/" target="_blank">View legal notices here</a>.</p>
</div>
</div>



	
	

	
						


	<script type="text/javascript" src="http://www.livinglakecountry.com/includes/jquery.hint.js"></script>
<script type="text/javascript" src="http://www.livinglakecountry.com/includes/jquery.pngFix.js"></script>

<script type="text/javascript">	
	var ctr=0;
	var newTime;
	var idArray=new Array("csw_carSoup","csw_marketplace","csw_jobNoggin","csw_houseRentals","csw_tickets");
	var ul;
	var liArray ;
	
	function timedCount()
	{
	ul=document.getElementById("csw_navigation_ul");
	liArray = ul.getElementsByTagName("li");
	for (var i = 0; i < liArray.length; i++) {
	liArray[i].setAttribute("class","off");
	document.getElementById(idArray[i]).style.display = "none";
      	}
	liArray[ctr].setAttribute("class","on");
	document.getElementById(idArray[ctr]).style.display = "block";
	ctr=ctr+1;
		
	newTime=setTimeout("timedCount()",5000);
	if(ctr>=5)
	{
	ctr=0;
	}
	}
	
	function doTimerMarketplace()
	{
	timedCount();
	}
	
	function clearTimers()
	{
	clearTimeout(newTime);
	ul=document.getElementById("csw_navigation_ul");
	liArray = ul.getElementsByTagName("li");
	for (var i = 0; i < liArray.length; i++) {
	liArray[i].setAttribute("class","off");
	document.getElementById(idArray[i]).style.display = "none";
	}
	}
	
	
	
	$(document).ready(function(){

        //begin link tracking
        //marketplace links
        $("#csw_marketplace a").omniture_link_tracking({
            linkName:"CSW_MarketPlace_Links"
        });
        //marketplace form
        $("#mktsearchform").omniture_link_tracking({
            linkName:"CSW_MarketPlace_SearchItems",
            getValue:function(){
                return $("#csw_marketplace_input").val();
            }
        });
        //carsoup new form
        $("#csw_carSoup").omniture_link_tracking({
            linkName:"CSW_CarSoup_QuoteSearch",
            getValue:function(){
                return "Quote " + $("#ExternalSearchQuoteWidget_ddlCarSoupYear290x116 option:selected").text() + "-" + $("#ExternalSearchQuoteWidget_ddlCarSoupMake290x116 option:selected").text() + "-" + $("#ExternalSearchQuoteWidget_ddlCarSoupMake290x116 option:selected").text() + "-" + $("#ExternalSearchQuoteWidget_ddlCarSoupModel290x116 option:selected").text() + "-" + $("#ExternalSearchQuoteWidget_txtCarSoupZipCode290x116").val();
            }
        });
        //carsoup used form
        $("#csw_carSoup").omniture_link_tracking({
            linkName:"CSW_CarSoup_InventorySearch",
            getValue:function(){
                return $("#ExternalSearchQuoteWidget_ddlCarSoupNeworUsed290x116 option:selected").text() + "-" + $("#ExternalSearchQuoteWidget_ddlCarSoupMake290x116 option:selected").text() + "-" + $("#ExternalSearchQuoteWidget_txtCarSoupZipCode290x116").val();
            }
        });
        //jobnoggin form
        $("#jsonline-employment-search-form").omniture_link_tracking({
            linkName:"CSW_JobNoggin_SearchItems",
            getValue:function(){
                return $("#jsonline-employment-search-keyword").val() + " " + $("#jsonline-employment-search-location").val();
            }
        });
        //house&home real estate form
        $("#csw_houseRentals_house form").omniture_link_tracking({
            linkName:"CSW_House&Homes_SearchItems",
            linkValue:"RealEstate"
        });
        //house&home rentals form
        $("#csw_houseRentals_rentals form").omniture_link_tracking({
            linkName:"CSW_House&Homes_SearchItems",
            linkValue:"Rentals"
        });
        //tickets links
        $("#csw_tickets a").omniture_link_tracking({
            linkName:"CSW_Tickets"
        });
        //tickets form
        $("#jsonline-ticket-search-form").omniture_link_tracking({
            linkName:"CSW_Tickets_SearchItems",
            getValue:function(){
                return $("#kwds").val();
            }
        });
        //end link tracking

        //png fix for tabs
        $('#csw_navigation').pngFix();
    
        var activeIndex = 0; // represents the user's selection
        var prevActiveIndex = 0; // the previous tab displayed 
        var ji_csw_navImages = $("#csw_navigation img"); // all of the nav buttons
        var ji_csw_contentDivs = $("#csw_mainContent").children(); // all of the search divs
        var tabIndex = 0;
        var prevTabIndex = 0;
        var tabContentDivs;
        var activeIndex;
        
        $(ji_csw_navImages[0]).parent().css( {paddingTop: 0} );
        

        // Img hover animation
        $("#csw_navigation a").hover(function () {
       		//clearTimeOut(t);
        
                activeIndex = $(this).parent().prevAll().length;        
                if (activeIndex !== prevActiveIndex){
                    $(this).children().animate( {paddingTop: 0},250 );
                }
            }, 
            function () {
           // alert("off");
                activeIndex = $(this).parent().prevAll().length;
                if (activeIndex !== prevActiveIndex){               
                    $(this).children().animate( {paddingTop: 2},250 );
                }
            }
        );
        
        // Navigation image click 
        $("#csw_navigation a").click(function(e){
			clearTimers(newTime);
			
			e.preventDefault();
			e.stopPropagation();
            activeIndex = $(this).parent().prevAll().length;   
          //  alert("activeIndex  " + activeIndex  + " prevActiveIndex " + prevActiveIndex);                                         
            if (activeIndex !== prevActiveIndex){ // only do this if a NEW selection was made
                $(ji_csw_contentDivs[prevActiveIndex]).css({display: 'none'}); // hide last content div
                $(ji_csw_navImages[prevActiveIndex]).parent().animate( {paddingTop: 2},250 ); // Animate old image down
                $(ji_csw_navImages[prevActiveIndex]).parent().parent().parent().removeClass("on").addClass("off"); // Remove active from previous tab
                
                $(ji_csw_contentDivs[activeIndex]).fadeIn(250); // show new div
                $(ji_csw_navImages[activeIndex]).parent().parent().parent().removeClass("off").addClass("on"); // Activate new tab
                prevActiveIndex = activeIndex;
                // Toggle all of the inner search panel tabs so that the first is selected and displayed
                $(".searchPanelTabs1 li, .searchPanelTabs2 li").removeClass("on").addClass("off");
                $(".searchPanelTabs1 li:first-child, .searchPanelTabs2 li:first-child").removeClass("off").addClass("on");
                $(".searchPanelContainer1, .searchPanelContainer2").children().css("display","none");
                $(".searchPanelContainer1 div:first-child, .searchPanelContainer2 div:first-child").css("display","block");
$(".searchPanelContainer1, .searchPanelContainer2").children().css("display","none");
 $(".searchPanelTabs1 li, .searchPanelTabs2 li").removeClass("on").addClass("off");
                tabIndex = 0;
                prevTabIndex = 0;
            }
            else
            {
          //  alert("show div");
              $(ji_csw_contentDivs[activeIndex]).css({display: 'block'});
              $(ji_csw_navImages[activeIndex]).parent().parent().parent().removeClass("off").addClass("on");
            }
            return false;           
        }); 
        
        // Search Panel Tabs
        $(".searchPanelTabs1 a, .searchPanelTabs2 a").click(function(){
            tabIndex = $(this).parent().prevAll().length;
            if (tabIndex != prevTabIndex){
                $(this).parent().parent().children(prevTabIndex).removeClass("on").addClass("off"); // Switch previous tab to off
                tabContentDivs = $(this).parent().parent().next().children();
                $(tabContentDivs[tabIndex]).toggle(); // Toggle this content div
                $(tabContentDivs[prevTabIndex]).toggle(); // Toggle the previous content div
                $(this).parent().removeClass("off").addClass("on"); // Switch this tab on
            }
            prevTabIndex = tabIndex;
            return false;           
        });         
    
        // Form Hints
        $("#csw_jobNoggin").find("input[title!=]").hint();
        $("#csw_classifieds").find("input[title!=]").hint();
        $("#csw_obituaries").find("input[title!=]").hint();
        $("#csw_houseRentals").find("input[title!=]").hint();
        
    }); // end ready
</script>
    
    

<style>
/*LLC right rail*/
#rightWell .csw{margin:0 0 10px 0;}
/*jsonline right rail*/
.right_column .csw{margin:0 0 15px 0;}
#jsonline-classified-extra.weddings .csw{margin:0 0 0 9px;}
/*moms right rail*/
#right_container .csw{margin:0 0 5px 8px;}
/*620wtmj right rail*/
.columnright .csw{margin:10px 15px;clear:both;}
/*now right rail*/
#right_column .csw{margin:8px;}
/*now left column*/
#left_column .csw{margin:8px 20px;}

.csw  div,.csw  dl,.csw  dt,.csw  dd,.csw  ul,.csw  ol,.csw  li,.csw  h1,.csw  h2,.csw  h3,.csw  h4,.csw  h5,.csw  h6,.csw  pre,.csw  form,.csw  fieldset,.csw  input,.csw  textarea,.csw  p,.csw  blockquote,.csw  th,.csw  td { margin:0;padding:0;}
.csw  table {border-collapse:collapse;border-spacing:0;}
.csw  fieldset,.csw  img { border:0;}
.csw  address,.csw  caption,.csw  cite,.csw  code,.csw  dfn,.csw  em,.csw  strong,.csw  th,.csw  var {font-style:normal;font-weight:normal;}
.csw  ol,.csw  ul {list-style:none;margin:0;}
.csw  caption,t.csw  h {text-align:left;}
.csw  h1,.csw  h2,.csw  h3,.csw  h4,.csw  h5,.csw  h6 {font-size:100%;font-weight:normal;}
.csw  q:before,.csw  q:after {content:'';}
.csw  abbr,.csw  acronym { border:0;}
#csw_navigation{margin: 0;width: 300px;height: 50px;}
#csw_navigation ul li{display: inline;float: left;margin:0;padding:0;background:none;line-height:normal;}
#csw_navigation div{margin-top: -2px;padding: 2px 0px 0px 0px;}
#csw_navigation  a{color: #ffffff;text-decoration: none;font-size: 9px;font-family: arial, helvetica, sans-serif;text-align: center;padding-top: 2px;width: 60px;height: 48px;display: block;}
#csw_navigation .off a:link, #csw_navigation  .off a:visited{background: url(http://media.journalinteractive.com/designimages/csw_tab_bg.gif);}
#csw_navigation .off a:hover, #csw_navigation .off a:active{background: url(http://media.journalinteractive.com/designimages/csw_tab_bg_hover.gif); }
#csw_navigation  .on a:link, #csw_navigation   .on  a:visited, #csw_navigation   .on  a:hover, #csw_navigation  .on  a:active{background: url(http://media.journalinteractive.com/designimages/csw_tab_bg_active.gif);}
#csw_wrapper{margin: 0;padding: 4px;width: 290px;background: #cccccc;border-left: 1px solid #666666;border-right: 1px solid #666666;border-bottom: 1px solid #666666;font-family: Tahoma, Geneva, sans-serif;}
#csw_mainContent{width: 288px;border: 1px solid #999999;background: #FFF;padding: 0px;}
.csw_searchContent{display: none;padding: 5px;height: 115px;}
/* styling for tip content*/
.bt-content {  color: #eeeeee;  font-size: 13px;  padding-left: 2px;  font-family: Tahoma, Geneva, sans-serif;}
.clearfix {    content: ".";font-size: 0px;    display: block;    height: 0px;    clear: both;}

/* ======== Marketplace ======================*/

#csw_marketplace{padding: 5px;height: 115px;background-color: #f8f8f8;background: url(http://media.jsonline.com/designimages/side_container_title_bckgrnd_JSO.gif) repeat-x;}
#csw_marketplace h3 {border-bottom: 1px solid #e7e5da;margin: 0px -5px 5px -5px;padding-left: 5px;}
#csw_marketplace h3 a:link, #csw_marketplace h3 a:visited{font-family: georgia, serif;font-size: 13px;text-transform: uppercase;color: #666666;text-decoration: none;}
#csw_marketplace form{margin: 5px 0px 5px 0px;}
#csw_marketplace_input {width: 275px;float: left;display: inline;}
#csw_marketplace_go{margin: 5px 0px 0px 5px;}
#csw_marketplace select{width: 90px;float: left;display: inline;margin: 10px 0px 0px 0px;}
#csw_obituaries a:link, #csw_marketplace a:link, #csw_obituaries a:visited, #csw_marketplace a:visited{color: #264a75;text-decoration: none;}
#csw_obituaries a:hover, #csw_marketplace a:hover, #csw_obituaries a:active, #csw_marketplace a:active{text-decoration: underline;}
#csw_marketplace ul li {float: left;margin: 0;padding: 0;background: none;font-size:12px;list-style-image:none;list-style-position:outside;list-style-type:none;}
#csw_marketplace ul li a {display: block;margin: 0;padding: 0 5px 0 2px;background: transparent url(http://media.jsonline.com/designimages/topBar_divider_2_JSO.gif) no-repeat 100% 50%;}
#csw_marketplace ul li.first a {padding: 0 5px 0 0;}
#csw_marketplace ul li.last a {padding: 0 0 0 2px;background: none;}

/* ========Car Soup ======================*/

#csw_carSoup{background: url(http://media.jsonline.com/designimages/csw_carsoup_bg.gif) no-repeat;}
#csw_carSoup ul{float: right;margin-top: 10px;}
#csw_carSoup li{display: inline;margin-left: 3px;float: left;}
#csw_carSoup .off  a:link, #csw_carSoup .off a:visited{font-family: arial, sans-serif;background: url(http://media.jsonline.com/designimages/csw_carsoup_subtab3.gif);font-weight: bold;font-size: 12px;color: #ffffff;text-align: center;padding-top: 2px;width: 62px;height: 16px;display: block;text-decoration: none;}
#csw_carSoup .off a:hover, #csw_carSoup .off a:active {background: url(http://media.jsonline.com/designimages/csw_carsoup_subtab2.gif);}
#csw_carSoup .on a:link, #csw_carSoup .on  a:visited, #csw_carSoup .on  a:hover, #csw_carSoup .on  a:active {font-family: arial, sans-serif;background: url(http://media.jsonline.com/designimages/csw_carsoup_subtab1.gif);font-weight: bold;font-size: 12px;color: #ffffff;text-align: center;padding-top: 2px;width: 62px;height: 16px;display: block;text-decoration: none;}
#csw_carSoup_content{padding: 5px;clear: both;border-top: 1px solid #b5220b;margin-top: 0px;}
#csw_carSoup_new{background: url(http://media.jsonline.com/designimages/csw_carsoup_new.gif) bottom right no-repeat;}
#csw_carSoup_used{background: url(http://media.jsonline.com/designimages/csw_carsoup_used.gif) bottom right no-repeat;}
#csw_carSoup select{margin-bottom: 5px;width: 125px;display: block;}
#csw_carSoup label{font-size: 11px;}
#usedMinYear, #usedMaxYear {width: 75px;float: left;}
.csw_jsonline-carsoup-search-newMake {float:left;}

.csw_jsonline-carsoup-search-newZip {float:none;margin-left:5px !important;}

/* ========Job Noggin= ===================*/

#csw_jobNoggin {background: url(http://media.jsonline.com/designimages/csw_jobnoggin_bg.jpg);padding-top: 25px;height: 95px;}
#csw_jobNoggin input{width: 160px;height: 15px;padding: 4px 0 2px 4px;margin: 0px 0px 3px 5px;font-family: Verdana;font-size: 11px;font-weight: normal;color: #676565;background: white;border: solid 1px #A9A9A9;}
#csw_jobNoggin button{margin: 0px 0px 0px 5px;border: 0;cursor: pointer;display: block;height: 19px;padding: 0px 10px;line-height: 19px;cursor: pointer;background: #EC8632 url(http://media.jobnoggin.com/designimages/employment-buttons.gif) repeat-x center top;border-top: 1px solid #DC8F60;border-right: 1px solid #A3531F;border-bottom: 1px solid #A3531F;border-left: 1px solid #DC8F60;color: #ffffff;font-family: arial;font-weight: bold;font-size: 12px;text-align: center;}
#csw_jobNoggin button:hover{background-position: 0 -21px;}

/* ========House and Rentals =============*/

#csw_houseRentals{background: url(http://media.jsonline.com/designimages/csw_homes_bg.gif) no-repeat;background-position: 5px 1px;font-family: arial, helvetica, sans-serif;font-size: 11px;}
#csw_houseRentals ul{float: right;margin-top: 10px;}
#csw_houseRentals li{display: inline;margin-left: 3px;float: left;}
#csw_houseRentals .off  a:link, #csw_houseRentals .off a:visited{font-family: arial, sans-serif;background: url(http://media.jsonline.com/designimages/csw_homes_subtab3.gif);font-weight: bold;font-size: 12px;color: #222222;text-align: center;padding-top: 2px;width: 62px;height: 16px;display: block;text-decoration: none;}
#csw_houseRentals .off a:hover, #csw_houseRentals .off a:active {background: url(http://media.jsonline.com/designimages/csw_homes_subtab2.gif);}
#csw_houseRentals .on a:link, #csw_houseRentals .on  a:visited, #csw_houseRentals .on  a:hover, #csw_houseRentals .on  a:active {font-family: arial, sans-serif;background: url(http://media.jsonline.com/designimages/csw_homes_subtab1.gif);font-weight: bold;font-size: 12px;color: #222222;text-align: center;padding-top: 2px;width: 62px;height: 16px;display: block;text-decoration: none;}
#csw_houseRentals_house{background: url(http://media.jsonline.com/designimages/55*10/csw_homes_realestate.gif) bottom right no-repeat;}
#csw_houseRentals_content{margin-top: 0px;padding: 5px;clear: both;border-top: 1px solid #bbd480;}

#csw_houseRentals input, #csw_houseRentals select{padding: 1px 2px;font-family: Verdana;font-size: 11px;font-weight: normal;color: #676565;background: white;border: solid 1px #A9A9A9;display: inline;float: left;margin: 0px 5px 5px 0px;}
#csw_houseRentals .submit{cursor:pointer;}

#csw_jsonline-realestate-search-city{width: 139px;}
.csw_jsonline-realestate-search-zip{width: 45px;margin: 0px;}
.csw_jsonline-realestate-search-state{width: 50px;}
.csw_jsonline-realestate-search-property-type{width: 145px;}
.csw_jsonline-realestate-search-min-price, .csw_jsonline-realestate-search-max-price{width: 28px;}
.csw_houseRental_insert{float: left;margin: 2px 2px 0px 0px;}
#csw_houseRentals_rentals{background: url(http://media.jsonline.com/designimages/35*10/csw_homes_rentals.gif) bottom right no-repeat;}

/* ========Tickets ===================*/

#csw_tickets{background-color: #cde7f3;color: #2697ce;font-size: 13px;font-weight: bold;text-align: center;padding-top: 5px;}
#ticketImage{margin: 5px 0px 0px 3px;}


</style>

<div class="csw">


<div id="csw_navigation">
    <ul id="csw_navigation_ul">
        <li class="on" title="Car Soup">
			<a href="#">CarSoup
				<div class="csw_navigation_spacer">
					<img src="http://media.jsonline.com/designimages/csw_carsoup_tab.png" border="0" class="navigationLink" />
				</div>
			</a>
		</li>
		
        <li class="off" title="Milwaukee Marketplace">
			<a href="#">Marketplace
				<div class="csw_navigation_spacer">
					<img src="http://media.jsonline.com/designimages/csw_marketplace_tab.png" border="0" class="navigationLink" />
				</div>
			</a>
		</li>    
		
        <li class="off" title="Job Noggin">
			<a href="#">JobNoggin
				<div class="csw_navigation_spacer">
					<img src="http://media.jsonline.com/designimages/csw_jobnoggin_tab.png" border="0" class="navigationLink"/>
				</div>
			</a>
		</li>
		
        <li class="off" title="Real Estate and Rentals">
			<a href="#">Home Rentals
				<div class="csw_navigation_spacer">
					<img src="http://media.jsonline.com/designimages/csw_homes_tab.png" border="0" class="navigationLink" />
				</div>
			</a>
		</li>
		
        <li class="off" title="Tickets">
			<a href="#">Tickets
				<div class="csw_navigation_spacer">
					<img src="http://media.jsonline.com/designimages/csw_tickets_tab.png" border="0" class="navigationLink"/>
				</div>
			</a>
		</li>
		
    </ul>
</div>
    
<div id="csw_wrapper">
    <div id="csw_mainContent">
        
	<div class="csw_searchContent" id="csw_carSoup" style="display:block;" title="Car Soup"><!-- Show this one initially-->
        
        <!-- ============================= -->
        <!-- Car Soup===================== --> 
        <!-- ============================= -->
        <script type="text/javascript" src="http://www.carsoup.com/adWidgets/quotesearch.aspx?adsize=290x116&dmode=search"></script>
     
        </div> <!-- End csw_searchContent --> 

   <!-- ============================= -->
        <!-- MarketPlace================== --> 
        <!-- ============================= -->          
        <div class="csw_searchContent" id="csw_marketplace">
            <h3><a href="http://www.milwaukeemarketplace.com/?ref=jsonline">Milwaukee Marketplace</a></h3>
            <a href="http://www.milwaukeemarketplace.com/?ref=jsonline"><img src="http://media.jsonline.com/designimages/mmp_findit2.gif" alt="Find it Fast. Find it Local." /></a>

            <form action="http://local.milwaukeemarketplace.com/search.pg" target="_blank" method="get" name="mktsearchform" id="mktsearchform">

              <input type="hidden" name="z" id="z" value="Milwaukee, WI" style="display:none;" />
              <input type="text" name="q" id="csw_marketplace_input" title="Keyword, Business Name, or ZIP Code" />

<select name="category" id="csw_marketplace_select" style="width: 230px;" onchange='OnChange(this.form.category);' >
<option value="">Select a category</option>
<option value="/milwaukee+wi/apartments.zq.html">Apartments</option>
<option value="/milwaukee+wi/attorneys.zq.html">Attorneys</option>
<option value="/milwaukee+wi/auto+dealers.zq.html">Auto Dealers</option>
<option value="/milwaukee+wi/auto+parts.zq.html">Auto Parts</option>
<option value="/milwaukee+wi/auto+repair.zq.html">Auto Repair</option>
<option value="/milwaukee+wi/beauty+salons.zq.html">Beauty Salons</option>
<option value="/milwaukee+wi/car+rental.zq.html">Car Rentals</option>
<option value="/milwaukee+wi/dentists.zq.html">Dentists</option>
<option value="/milwaukee+wi/doctors.zq.html">Doctors</option>
<option value="/milwaukee+wi/flowers.zq.html">Flowers</option>
<option value="/milwaukee+wi/hotels.zq.html">Hotels</option>
<option value="/milwaukee+wi/insurance.zq.html">Insurance</option>
<option value="/milwaukee+wi/loans.zq.html">Loans</option>
<option value="/milwaukee+wi/mortgages.zq.html">Mortgages</option>
<option value="/milwaukee+wi/movers.zq.html">Movers</option>
<option value="/milwaukee+wi/pizza.zq.html">Pizza</option>
<option value="/milwaukee+wi/realtors.zq.html">Realtors</option>
<option value="/milwaukee+wi/restaurants.zq.html">Restaurants</option>
<option value="/milwaukee+wi/storage.zq.html">Storage</option>
<option value="/milwaukee+wi/tax+preparation.zq.html">Tax Preparation</option>
<option value="/milwaukee+wi/travel.zq.html">Travel</option>
<option value="/allads.q.html">Featured</option>
<option value="/milwaukee+wi.z.html">More...</option>
 </select>

<a href="javascript:SubmitSearch(document.mktsearchform);"><img src="http://media.jsonline.com/designimages/go_button_JSO.gif" border=0 alt="Go" id="csw_marketplace_go" /></a>

<!-- I dont think this is being used anymore-->
<input type="hidden" name="ref" value="jsonline" style="display:none;" />

            </form>

<SCRIPT LANGUAGE="javascript">
<!--
function OnChange(dropdown)
{
    var myindex  = dropdown.selectedIndex;
    var SelValue = dropdown.options[myindex].value;
    var baseURL  = 'http://local.milwaukeemarketplace.com' + SelValue;
    top.location.href = encodeURI(baseURL);
    
    return true;
}
//-->
</SCRIPT>

<SCRIPT LANGUAGE="javascript">
<!--
function SubmitSearch(cswform)
{
    var baseURL  = 'http://local.milwaukeemarketplace.com/search.pg?q=' + cswform.q.value + '&z=' + cswform.z.value;
    //alert(baseURL);
    top.location.href = encodeURI(baseURL);
    
    return false;
}
//-->
</SCRIPT>
<!-- My comments here.. - Venkat -->
           <span style="font-size:8pt; color:gray;"><a onclick="el = document.getElementById('pgmenu2'); el.style.display = (el.style.display == 'block' ? 'none' : 'block'); return false;" href="http://local.milwaukeemarketplace.com">Popular Milwaukee Business Searches</a><div style='display:none; font-size:9pt; background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #CCCCCC; font-family: Verdana,Arial,Helvetica,sans-serif; padding: 5px 5px 5px 5px; text-align: left; width: 265px; opacity:.99; filter:alpha(opacity=99);' id='pgmenu2'> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/apartments.zq.html">Apartments in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/attorneys.zq.html">Attorneys in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/auto+dealers.zq.html">Auto Dealers in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/auto+parts.zq.html">Auto Parts in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/auto+repair.zq.html">Auto Repair in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/beauty+salons.zq.html">Beauty Salons in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/car+rental.zq.html">Car Rental in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/dentists.zq.html">Dentists in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/doctors.zq.html">Doctors in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/flowers.zq.html">Flowers in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/hotels.zq.html">Hotels in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/insurance.zq.html">Insurance in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/loans.zq.html">Loans in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/mortgages.zq.html">Mortgages in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/movers.zq.html">Movers in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/pizza.zq.html">Pizza in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/realtors.zq.html">Realtors in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/restaurants.zq.html">Restaurants in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/storage.zq.html">Storage in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/tax+preparation.zq.html">Tax Preparation in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi/travel.zq.html">Travel in Milwaukee</a><br> <a href="http://local.milwaukeemarketplace.com/allads.q.html">Featured</a><br> <a href="http://local.milwaukeemarketplace.com/milwaukee+wi.z.html">More...</a></div><br>Powered by <a style='text-decoration:none;' href="http://www.local.com/city/wi/milwaukee.aspx">Local.com</a></span>
        </div> <!-- End csw_searchContent -->  
    
        <!-- ============================= -->
        <!-- Job Noggin=================== --> 
        <!-- ============================= -->
        <div class="csw_searchContent" id="csw_jobNoggin">
            <form action="http://jobsearch.jobnoggin.monster.com/Search.aspx" method="get" id="jsonline-employment-search-form" target="_blank">
                <input type="text" name="q" id="jsonline-employment-search-keyword" title="Keywords / Web ID" />
                <input type="text" name="where" id="jsonline-employment-search-location" title="Location (City, State or ZIP Code)" value = "Milwaukee, WI" />
                <button type="submit" id="jsonline-employment-search-submit">Search</button>
            </form>
            <div class="clear"></div>
        </div> <!-- End csw_searchContent --> 
    
        <!-- ============================= -->
        <!-- House and Rental============ --> 
        <!-- ============================= -->  
        <div class="csw_searchContent" id="csw_houseRentals">
            <ul class="searchPanelTabs2">
                <li class="on"><a href="#">For Sale</a></li>
                <li class="off"><a href="#">For Rent</a></li>
            </ul>
                <div id="csw_houseRentals_content" class="searchPanelContainer1">
                    <!-- House====================== -->    
                    <div id="csw_houseRentals_house">

						<form action="http://www.jsonline.com/templates/MKT.HouseHome.Redirect" method="get" target="_blank">
							<input type="hidden" value="false" name="IsRental" />
							
							<input type="text" name="qCity" class="csw_jsonline-realestate-search-city" size="20" title="City"/>
                            <select name="qState" class="csw_jsonline-realestate-search-state">
                                <option value="AK">AK</option>
                                <option value="AL">AL</option>
                                <option value="AR">AR</option>
                                <option value="AZ">AZ</option>
                                <option value="CA">CA</option>
                                <option value="CO">CO</option>
                                <option value="CT">CT</option>
                                <option value="DC">DC</option>
                                <option value="DE">DE</option>
                                <option value="FL">FL</option>
                                <option value="GA">GA</option>
                                <option value="HI">HI</option>
                                <option value="IA">IA</option>
                                <option value="ID">ID</option>
                                <option value="IL">IL</option>
                                <option value="IN">IN</option>
                                <option value="KS">KS</option>
                                <option value="KY">KY</option>
                                <option value="LA">LA</option>
                                <option value="MA">MA</option>
                                <option value="MD">MD</option>
                                <option value="ME">ME</option>
                                <option value="MI">MI</option>
                                <option value="MN">MN</option>
                                <option value="MO">MO</option>
                                <option value="MS">MS</option>
                                <option value="MT">MT</option>
                                <option value="NC">NC</option>
                                <option value="ND">ND</option>
                                <option value="NE">NE</option>
                                <option value="NH">NH</option>
                                <option value="NJ">NJ</option>
                                <option value="NM">NM</option>
                                <option value="NV">NV</option>
                                <option value="NY">NY</option>
                                <option value="OH">OH</option>
                                <option value="OK">OK</option>
                                <option value="OR">OR</option>
                                <option value="PA">PA</option>
                                <option value="RI">RI</option>
                                <option value="SC">SC</option>
                                <option value="SD">SD</option>
                                <option value="TN">TN</option>
                                <option value="TX">TX</option>
                                <option value="UT">UT</option>
                                <option value="VA">VA</option>

                                <option value="VT">VT</option>
                                <option value="WA">WA</option>
                                <option value="WI" selected="selected">WI</option>
                                <option value="WV">WV</option>
                                <option value="WY">WY</option>
                                <option value="AB">AB</option>
                                <option value="BC">BC</option>
                                <option value="MB">MB</option>
                                <option value="NB">NB</option>
                                <option value="NF">NF</option>
                                <option value="NS">NS</option>
                                <option value="NT">NT</option>
                                <option value="ON">ON</option>
                                <option value="PE">PE</option>
                                <option value="QC">QC</option>
                                <option value="SK">SK</option>
                                <option value="YT">YT</option>
                            </select>
                            <input type="text" name="qZip" class="csw_jsonline-realestate-search-zip" size="10" title="ZIP"/>
                            <select name="propertyType" class="csw_jsonline-realestate-search-property-type">
                                <option value="" selected="selected">Property Type</option>
                                <option value="Business-Opportunities">Business Opportunities</option>
                                <option value="Business-Property">Business Property</option>
                                <option value="Commercial">Commercial/Industrial</option>
                                <option value="Condos">Condos</option>
                                <option value="Duplex">Duplex</option>
                                <option value="Farm">Farm</option>
                                <option value="Investment-Property">Investment Property</option>
                                <option value="Lake-and-Country">Lake and Country</option>
                                <option value="Mobile-Homes">Mobile Homes</option>
                                <option value="Multi-family">Multi-family</option>
                                <option value="New-Development">New Developments</option>
                                <option value="Out-of-State">Out of State</option>
                                <option value="Single-Family">Single Family</option>
                                <option value="Vacant-Land">Vacant Land</option>
                            </select>
                            <div class="csw_houseRental_insert">Price</div>
                            <input type="text" name="qMinPrice" class="csw_jsonline-realestate-search-min-price" />
                            <div class="csw_houseRental_insert">to</div>
                            <input type="text" name="qMaxPrice" class="csw_jsonline-realestate-search-max-price"  />
                            <div class="clearfix"></div>
                            <select name="qBedrooms" id="jsonline-realestate-search-bedrooms">
                                <option value="0-" selected="selected">Bedrooms</option>
                                <option value="0-">Any</option>
                                <option value="studio-">studio+</option>
                                <option value="1-">1+</option>
                                <option value="2-">2+</option>
                                <option value="3-">3+</option>
                                <option value="4-">4+</option>
                                <option value="5-">5+</option>
                            </select>
                            <select name="qBathrooms" id="jsonline-realestate-search-bathrooms">
                                <option value="0-" selected="selected">Bathrooms</option>
                                <option value="0-">Any</option>
                                <option value="studio-">studio+</option>
                                <option value="1-">1+</option>
                                <option value="2-">2+</option>
                                <option value="3-">3+</option>
                                <option value="4-">4+</option>
                                <option value="5-">5+</option>
                            </select>

                            <input type="hidden" name="qAction" value="search" style="display: none;"/>
                            <input type="hidden" name="qTerms" value="sell" style="display: none;"/>
                            <input type="hidden" name="qSearchTab" value="sell" style="display: none;"/>                            
                            <input type="submit" name="propertySearchFormsubmit" value="Go" />
                            <div class="clearfix"></div>
                        </form>

                    </div> <!-- end of csw_houseRentals_house -->

                    <!-- Rentals====================== --> 
                    <div id="csw_houseRentals_rentals" style="display: none;">

                        <form action="http://www.jsonline.com/templates/MKT.HouseHome.Redirect" method="get" target="_blank">
							<input type="hidden" value="true" name="IsRental" />
							
							<input type="text" name="qCity" class="csw_jsonline-realestate-search-city" size="20" title="City"/>
                            <select name="qState" class="csw_jsonline-realestate-search-state">
                                <option value="AK">AK</option>
                                <option value="AL">AL</option>
                                <option value="AR">AR</option>
                                <option value="AZ">AZ</option>
                                <option value="CA">CA</option>
                                <option value="CO">CO</option>
                                <option value="CT">CT</option>
                                <option value="DC">DC</option>
                                <option value="DE">DE</option>
                                <option value="FL">FL</option>
                                <option value="GA">GA</option>
                                <option value="HI">HI</option>
                                <option value="IA">IA</option>
                                <option value="ID">ID</option>
                                <option value="IL">IL</option>
                                <option value="IN">IN</option>
                                <option value="KS">KS</option>
                                <option value="KY">KY</option>
                                <option value="LA">LA</option>
                                <option value="MA">MA</option>
                                <option value="MD">MD</option>
                                <option value="ME">ME</option>
                                <option value="MI">MI</option>
                                <option value="MN">MN</option>
                                <option value="MO">MO</option>
                                <option value="MS">MS</option>
                                <option value="MT">MT</option>
                                <option value="NC">NC</option>
                                <option value="ND">ND</option>
                                <option value="NE">NE</option>
                                <option value="NH">NH</option>
                                <option value="NJ">NJ</option>
                                <option value="NM">NM</option>
                                <option value="NV">NV</option>
                                <option value="NY">NY</option>
                                <option value="OH">OH</option>
                                <option value="OK">OK</option>
                                <option value="OR">OR</option>
                                <option value="PA">PA</option>
                                <option value="RI">RI</option>
                                <option value="SC">SC</option>
                                <option value="SD">SD</option>
                                <option value="TN">TN</option>
                                <option value="TX">TX</option>
                                <option value="UT">UT</option>
                                <option value="VA">VA</option>
                                <option value="VT">VT</option>
                                <option value="WA">WA</option>
                                <option value="WI" selected="selected">WI</option>
                                <option value="WV">WV</option>
                                <option value="WY">WY</option>
                                <option value="AB">AB</option>
                                <option value="BC">BC</option>
                                <option value="MB">MB</option>
                                <option value="NB">NB</option>
                                <option value="NF">NF</option>
                                <option value="NS">NS</option>
                                <option value="NT">NT</option>
                                <option value="ON">ON</option>
                                <option value="PE">PE</option>
                                <option value="QC">QC</option>
                                <option value="SK">SK</option>
                                <option value="YT">YT</option>
                            </select>
                            <input type="text" name="qZip" class="csw_jsonline-realestate-search-zip" size="10" title="ZIP"/>
                            <select name="propertyType[]" class="csw_jsonline-realestate-search-property-type">
                                <option value="" selected="selected">Property Type</option>
                                <option value="Business-Opportunities">Business Opportunities</option>
                                <option value="Business-Property">Business Property</option>
                                <option value="Commercial/Industrial">Commercial/Industrial</option>
                                <option value="Condos">Condos</option>
                                <option value="Duplex">Duplex</option>
                                <option value="Farm">Farm</option>
                                <option value="Investment Property">Investment Property</option>
                                <option value="Lake-and-Country">Lake and Country</option>
                                <option value="Mobile-Homes">Mobile Homes</option>
                                <option value="Multi-family">Multi-family</option>
                                <option value="New-Development">New Developments</option>
                                <option value="Out-of-State">Out of State</option>
                                <option value="Single-Family">Single Family</option>
                                <option value="Vacant Land">Vacant Land</option>
                            </select>
                            <div class="csw_houseRental_insert">Price</div>
                            <input type="text" name="qMinPrice" class="csw_jsonline-realestate-search-min-price" />
                            <div class="csw_houseRental_insert">to</div>
                            <input type="text" name="qMaxPrice" class="csw_jsonline-realestate-search-max-price"  />
                            <div class="clearfix"></div>
                            <select name="qBedrooms" id="jsonline-realestate-search-bedrooms">
                                <option value="0-" selected="selected">Bedrooms</option>
                                <option value="0-">Any</option>
                                <option value="studio-">studio+</option>
                                <option value="1-">1+</option>
                                <option value="2-">2+</option>
                                <option value="3-">3+</option>
                                <option value="4-">4+</option>
                                <option value="5-">5+</option>
                            </select>
                            <select name="qBathrooms" id="jsonline-realestate-search-bathrooms">
                                <option value="0-" selected="selected">Bathrooms</option>
                                <option value="0-">Any</option>
                                <option value="studio-">studio+</option>
                                <option value="1-">1+</option>
                                <option value="2-">2+</option>
                                <option value="3-">3+</option>
                                <option value="4-">4+</option>
                                <option value="5-">5+</option>
                            </select>

                            <input type="hidden" name="qAction" value="search" style="display: none;"/>
                            <input type="hidden" name="qTerms" value="sell" style="display: none;"/>
                            <input type="hidden" name="qSearchTab" value="sell" style="display: none;"/>                            
                            <input type="submit" name="propertySearchFormsubmit" value="Go" class="submit"/>
                            <div class="clearfix"></div>
                        </form>
                    </div> <!-- end of used-form -->           
            </div> <!-- end of content -->              
        </div> <!-- End csw_searchContent -->

        <!-- ============================= -->
        <!-- Tickets====================== --> 
        <!-- ============================= -->
        <div class="csw_searchContent" id="csw_tickets">
            <div style="float: left; margin-left: 25px; margin-top: 2px;">SEARCH:</div>

<form action="http://tickets.jsonline.com/ResultsGeneral.aspx?stype=0" method="get" id="jsonline-ticket-search-form" target="_blank">


            <input type="text" name="kwds" onkeypress="KeyPressedSearch(window.event)" id="kwds" style="float: left;  margin-left: 3px;">
                <input type="image" src="http://media.jsonline.com/designimages/csw_tickets_rightarrowbtn.gif" style="float: left; margin-top: 3px;  margin-left: 3px;">        
    </form>
<div>
            <a href="http://tickets.jsonline.com/"><img src="http://media.jsonline.com/designimages/csw_tickets_bg.jpg" id="ticketImage" alt="tickets.jsonline.com" /></a>
</div>

            
        </div> <!-- End csw_searchContent --> 
    </div><!-- End main content -->
    
</div><!-- End wrapper -->

</div>




	

     </div>








                </div><!-- end content -->
        
<!-- start footer -->
                            <div id="footer">
                    <div class="left"></div>
                    <div class="center">
                       <span><a class="footerNav" href="/">Home</a>|<a class="footerNav" href="/lakecountryreporter">Lake Country Reporter</a>|<a class="footerNav" href="/oconomowocfocus">Oconomowoc Focus</a>|<a class="footerNav" href="/sussexsun">Sussex Sun</a>|<a class="footerNav" href="/kettlemoraineindex">Kettle Moraine Index</a>|<a class="footerNav" href="/mukwonagochief">Mukwonago Chief</a>|<a class="footerNav" href="http://www.livinglakecountry.com/classified/">Classifieds</a></span>
                         <br /><br />
                         &copy; 2011 LivingLakeCountry.com.  All rights reserved. | <a href="http://www.jsonline.com/privacy.html"><b>Privacy Policy/Your Californial Privacy Rights</b></a> | <a href="http://www.jsonline.com/general/27227149.html">Terms of Use</a> | <a class="footerNav" href="/contactus/39311132.html">Advertise with Us</a><br />
                         Produced by <a href="http://www.journalinteractive.com" style="margin-right:0px;">Journal Interactive</a>,&nbsp; a division of <a href="http://www.journalcommunications.com">Journal Communications, Inc.</a>
                    </div><!-- end center -->

                    <div class="right"></div>
                </div><!-- end footer -->


            </div><!-- end container -->
        </div><!-- end main -->       
    

<script type="text/javascript">
//<![CDATA[
//Sys.Application.initialize();
//]]>
</script>


<script type="text/javascript">

   function mHilight(obj){
      document.getElementById("mItem0").className = "inactiveTab";
      document.getElementById("mItem1").className = "inactiveTab";
      document.getElementById("mItem2").className = "inactiveTab";
      document.getElementById("mItem3").className = "inactiveTab";
      document.getElementById("mItem4").className = "inactiveTab";
      document. getElementById("mItem5").className = "inactiveTab";
      document.getElementById("mItem6").className = "inactiveTab";
      obj.className = "activeTab";

      var submenu = document.getElementById("subMenu");
      switch(obj.id) {
         case "mItem0":
            submenu.innerHTML = ""
            break;
         case "mItem1":
            submenu.innerHTML = "<a href='/lakecountryreporter' class='normal_sub'>Main</a> | <a href='/lakecountryreporter/news/' class='normal_sub'>News & Features</a> | <a href='/lakecountryreporter/sports/' class='normal_sub'>Sports</a> | <a href='/lakecountryreporter/opinion/' class='normal_sub'>Opinion</a> | <a href='/lakecountryreporter/policeandcourts/' class='normal_sub'>Police & Courts</a> | <a href='/lakecountryreporter/columns/' class='normal_sub'>Columns</a> | <a href='/lakecountryreporter/announcements/' class='normal_sub'>Announcements</a> | <a href='/lakecountryreporter/community/' class='normal_sub'>Community</a> "
            break;
         case "mItem2":
            submenu.innerHTML = "<a href='/oconomowocfocus' class='normal_sub'>Main</a> | <a href='/oconomowocfocus/news/' class='normal_sub'>News & Features</a> | <a href='/oconomowocfocus/sports/' class='normal_sub'>Sports</a> | <a href='/oconomowocfocus/opinion/' class='normal_sub'>Opinion</a> | <a href='/oconomowocfocus/policeandcourts/' class='normal_sub'>Police & Courts</a> | <a href='/oconomowocfocus/columns/' class='normal_sub'>Columns</a> | <a href='/oconomowocfocus/announcements/' class='normal_sub'>Announcements</a> | <a href='/oconomowocfocus/community/' class='normal_sub'>Community</a> "
            break;
         case "mItem3":
            submenu.innerHTML = "<a href='/sussexsun' class='normal_sub'>Main</a> | <a href='/sussexsun/news/' class='normal_sub'>News & Features</a> | <a href='/sussexsun/sports/' class='normal_sub'>Sports</a> | <a href='/sussexsun/opinion/' class='normal_sub'>Opinion</a> | <a href='/sussexsun/policeandcourts/' class='normal_sub'>Police & Courts</a> | <a href='/sussexsun/columns/' class='normal_sub'>Columns</a> | <a href='/sussexsun/announcements/' class='normal_sub'>Announcements</a> | <a href='/sussexsun/community/' class='normal_sub'>Community</a> "
            break;
         case "mItem4":
            submenu.innerHTML = "<a href='/kettlemoraineindex' class='normal_sub'>Main</a> | <a href='/kettlemoraineindex/news/' class='normal_sub'>News & Features</a> | <a href='/kettlemoraineindex/sports/' class='normal_sub'>Sports</a> | <a href='/kettlemoraineindex/opinion/' class='normal_sub'>Opinion</a> | <a href='/kettlemoraineindex/policeandcourts/' class='normal_sub'>Police & Courts</a> | <a href='/kettlemoraineindex/columns/' class='normal_sub'>Columns</a> | <a href='/kettlemoraineindex/announcements/' class='normal_sub'>Announcements</a> | <a href='/kettlemoraineindex/community/' class='normal_sub'>Community</a> "
            break;
         case "mItem5":
            submenu.innerHTML = "<a href='/mukwonagochief' class='normal_sub'>Main</a> | <a href='/mukwonagochief/news/' class='normal_sub'>News & Features</a> | <a href='/mukwonagochief/sports/' class='normal_sub'>Sports</a> | <a href='/mukwonagochief/opinion/' class='normal_sub'>Opinion</a> | <a href='/mukwonagochief/policeandcourts/' class='normal_sub'>Police & Courts</a> | <a href='/mukwonagochief/columns/' class='normal_sub'>Columns</a> | <a href='/mukwonagochief/announcements/' class='normal_sub'>Announcements</a> | <a href='/mukwonagochief/community/' class='normal_sub'>Community</a> "
            break;
         case "mItem6":
            submenu.innerHTML = "<a href='/classified' class='normal_sub'>Main</a> | <a href='http://www.wibuyersguide.com/jefferson/' class='normal_sub'>Jefferson Advertiser</a> | <a href='http://jsonline.p2ionline.com/sitebase/newspaperads.aspx?communityid=Mukwonago' class='normal_sub'>Print Ads</a> "
            break;
      }
      if(submenu.innerHTML == "") {
         document.getElementById("secondNavBar").style.display = "none";
      }else{
         document.getElementById("secondNavBar").style.display = "block";
      }
   }

         mHilight(document.getElementById("mItem0"));
   
</script>
<div class="back_to_top">
<a href="#LLC_login">Back to top</a>
</div>
<script>
$(document).ready(function(){
	$(".back_to_top a").click(function(e){
		e.preventDefault();
		$("html,body").animate({scrollTop:0},"fast");
	});
});
</script>

</body>
</html>

