todaystmj4.com - information about domain
- Server Status: available
- Server IP: 208.80.56.11
- Server Response Time: 518ms
Site title
TODAY'S TMJ4 - Milwaukee's Source for Local News and Weather
Keywords
Home - TODAY
Alexa information
Alexa rank: 70,193
Rank Trend
Bounce Trend
DNS Information
| Host: | Class: | Type: | IP: | TTL: | Target: | Other: |
| todaystmj4.com | IN | MX | 15300 | todaystmj4.com.s8a2.psmtp.com | pri: 200 | |
| todaystmj4.com | IN | MX | 15300 | todaystmj4.com.s8b1.psmtp.com | pri: 300 | |
| todaystmj4.com | IN | MX | 15300 | todaystmj4.com.s8b2.psmtp.com | pri: 400 | |
| todaystmj4.com | IN | MX | 15300 | todaystmj4.com.s8a1.psmtp.com | pri: 100 | |
| todaystmj4.com | IN | A | 208.80.56.11 | 15300 | ||
| todaystmj4.com | IN | SOA | 15300 | mname: ns2.journalbroadcastgroup.com rname: postmaster.journalbroadcastgroup.com serial: 2003102303 refresh: 10800 retry: 600 expire: 604800 minimum-ttl: 15300 |
||
| todaystmj4.com | IN | TXT | 15300 | |||
| todaystmj4.com | IN | TXT | 15300 | |||
| todaystmj4.com | IN | NS | 15300 | ns2.journalbroadcastgroup.com | ||
| todaystmj4.com | IN | NS | 15300 | dbru.br.ns.els-gms.att.net | ||
| todaystmj4.com | IN | NS | 15300 | dmtu.mt.ns.els-gms.att.net |
Server Location
Site source
Show / hide source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- true suppressTeaser values -->
<!-- displyTitle: -->
<!-- 201104150618 | Susan Kim: Susan Cam -->
<!-- 201203091753 | Lance Allan: Sports Glance with Lance -->
<!-- 201203111901 | Shelley Walcott: Don't Tell The Boss -->
<!-- 201203091042 | Brian Gotter: Welcome Back, Gotter -->
<!-- 201202241448 | Carole Meekins: Positively Milwaukee -->
<!-- 201203120536 | Vince Vitrano: Not For Broadcast -->
<!-- 201201101317 | Steve Wexler: Boss's Blog -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>TODAY'S TMJ4 - Milwaukee's Source for Local News and Weather</title>
<link type="image/ico" rel="icon" href="http://media.jsonline.com/designimages/Favicon1.ico" />
<meta property="og:image" content="http://media.todaystmj4.com/images/todaystmj4_generic.jpg"></meta>
<meta property="og:title" content="TODAY'S TMJ4 - Milwaukee's Source for Local News and Weather"></meta>
<meta property="og:type" content="website"></meta>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Jim Conigliaro" />
<meta name="keywords" content="Home - TODAY'S TMJ4 (production)" />
<meta name="pagetype" content="Home" />
<meta name="publishdate" content="2011-11-14T10:01:36" />
<meta name="medium" content="news" />
<script type="text/javascript">
//Objects to interact with server
var CMSUtil = {
interactWithServer: function(form, isAjax, buildObjectFunction,
returnFunction, action, servlet,
extraFields){
if(isAjax == true && returnFunction != null){
var queryString = this.serializeForm(form);
if(queryString != null){
if(action != null){
queryString += "&action=" + action + "&isAjax=Y";
}else{
queryString += "&isAjax=Y";
}
if(extraFields){
queryString += extraFields;
}
var req = this.getXmlRequestObject();
if(req != null) {
var handlerFunction = this.getReadyStateHandler(req, returnFunction, buildObjectFunction);
req.onreadystatechange = handlerFunction;
req.open("POST", servlet, true);
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
req.send(queryString);
return false;
}
}
}else{
this.submitUserFormNoAJAX(form, action, servlet);
}
},
getXmlRequestObject: function() {
var req;
if(window.XMLHttpRequest){
req = new XMLHttpRequest();
}else if(window.ActiveXObject){
try{
req = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{
req = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
return null;
}
}
}
return req;
},
getReadyStateHandler: function(req, returnFunction, buildObjectFunction) {
return function () {
// If the request's status is "complete"
if (req.readyState == 4) {
// Check that a successful server response was received
if (req.status == 200) {
// Pass the XML payload of the response to the
// handler function
var response = "(" + req.responseText + ")";
response = eval(response);
buildObjectFunction(response);
returnFunction(response);
} else {
// An HTTP problem has occurred
alert("HTTP error: "+req.status);
}
}
}
},
serializeForm: function(form){
var paramString = "";
var ampRegex = new RegExp("&", "g");
var replaceAmpStr = escape("&");
var percentRegex = new RegExp("%", "g");
var replacePerStr = escape("%");
for(var i = 0;i < form.elements.length;i++){
var field = form.elements[i];
if(field.tagName === "TEXTAREA" || (field.tagName === "INPUT" && field.type !== "submit")){
if(field.type === "checkbox" && !field.checked){
continue;
}
var fieldValue = field.value;
fieldValue = fieldValue.replace(percentRegex, replacePerStr);
fieldValue = fieldValue.replace(ampRegex, replaceAmpStr);
paramString += field.name + "=" + fieldValue + "&";
}
}
return paramString;
},
submitUserFormNoAJAX: function(form, action, servlet){
if(servlet == null) return null;
form.action = servlet;
if(action != null) {
var actionField = document.createElement('input');
actionField.setAttribute('name', 'action');
actionField.setAttribute('type', 'hidden');
actionField.value = action;
form.appendChild(actionField);
}
form.submit();
}
}
var Action = {
attachAction: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "attachActionAJAX";
} else {
action = "attachAction";
}
CMSUtil.interactWithServer(form, isAjax, Action.buildAction, returnFunction, action, "/s");
},
deleteAction: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "deleteActionAJAX";
} else {
action = "deleteAction";
}
CMSUtil.interactWithServer(form, isAjax, Action.deletedAction, returnFunction, action, "/s");
},
buildAction: function(response){
if(response.success == true){
Action.actionID = response.actionID;
Action.contentID = response.contentID;
Action.commentID = response.commentID;
Action.contentTypeID = response.contentTypeID;
Action.actionDate = response.actionDate;
Action.userID = response.userID;
Action.actionType = response.actionType;
Action.slugLine = response.slugLine;
} else {
Action.error = response.error;
}
},
deletedAction: function(response){
if(response.success == true){
Action.actionID = response.actionID;
} else {
Action.error = response.error;
}
}
}
var Ranking = {
insertRanking: function(form, isAjax, returnFunction){
CMSUtil.interactWithServer(form, isAjax, Ranking.buildRanking, returnFunction, "rankComment", "/p");
},
buildRanking: function(response){
if(response.success == true){
Ranking.success = true;
Ranking.objectId = response.objectId;
Ranking.type = response.type;
Ranking.ipAddress = response.ipAddress;
Ranking.rankDate = response.rankDate;
Ranking.upRanking = response.upRanking;
Ranking.downRanking = response.downRanking;
} else {
Ranking.error = response.error;
}
}
}
var Rating = {
addRating: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "addRatingAJAX";
} else {
action = "addRating";
}
CMSUtil.interactWithServer(form, isAjax, Rating.buildRating, returnFunction, action, "/s");
},
insertRating: function(form, isAjax, returnFunction){
var extraQueryStr = null;
if(isAjax){
extraQueryStr = getFieldsForForm();
}else{
addFieldsToForm(form);
}
CMSUtil.interactWithServer(form, isAjax, Comment.buildComment, returnFunction, "insertComment", "/c", extraQueryStr);
},
buildRating: function(response){
if(response.success == true){
Rating.id = response.id;
Rating.rating = response.rating;
Rating.upvote = response.upvote;
Rating.downvote = response.downvote;
Rating.type = response.type;
Rating.date = response.date;
Rating.ipAddress = response.ipAddress;
}else{
Rating.error = response.error;
}
}
}
var User = {
createUser: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "createProfileAJAX";
} else {
action = "createProfile";
}
CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s");
},
loginUser: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "doLoginProfileAJAX";
} else {
action = "doLoginProfile";
}
CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s");
},
updateUser: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "updateProfileAJAX";
} else {
action = "updateProfile";
}
CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s");
},
updateRegistration: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "updateRegistrationAJAX";
} else {
action = "updateReg";
}
CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s");
},
updateProfilePassword: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
action = "updateProfilePasswordAJAX";
} else {
action = "updateProfilePassword";
}
CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s");
},
insertProfilePic: function(form, isAjax, returnFunction){
var action = "";
if(isAjax){
//not implemented as of yet
return;
//action = "updateImageAJAX";
} else {
action = "updateImage";
}
CMSUtil.interactWithServer(form, isAjax, User.buildUser, returnFunction, action, "/s");
},
buildUser: function(response){
if(response.success == true){
User.ID = response.ID;
User.username = response.username;
User.email = response.email;
User.firstName = response.firstName;
User.lastName = response.lastName;
User.birthDate = response.birthDate;
User.createDate = response.createDate;
User.title = response.title;
User.company = response.company;
User.address1 = response.address1;
User.address2 = response.address2;
User.city = response.city;
User.state = response.state;
User.zipcode = response.zipcode;
User.country = response.country;
User.custom1 = response.custom1;
User.custom2 = response.custom2;
User.custom3 = response.custom3;
User.custom4 = response.custom4;
User.custom5 = response.custom5;
User.custom6 = response.custom6;
User.custom7 = response.custom7;
User.custom8 = response.custom8;
User.custom9 = response.custom9;
}else{
User.error = response.error;
User.errorMsg = response.errorMsg;
User.errorCode = response.errorCode;
}
}
}
var UserContent = {
insertContent: function(form, isAjax, returnFunction){
var extraQueryStr = null;
if(isAjax){
extraQueryStr = getFieldsForForm();
}else{
addFieldsToForm(form);
}
UserContent.messages = null;
CMSUtil.interactWithServer(form, isAjax, UserContent.buildContent, returnFunction, extraQueryStr, "/d");
},
editContent: function(form, isAjax, returnFunction){
CMSUtil.interactWithServer(form, isAjax, UserContent.buildContent, returnFunction, null, "/d");
},
buildContent: function(response){
if(response.success == true){
for (var i=0; i< response.fields.length; i++){
var field = response.fields[i];
UserContent[field] = response[field];
}
UserContent.contentID = response.contentID;
UserContent.contentType = response.contentType;
UserContent.title = response.title;
UserContent.status = response.status;
} else {
UserContent.error = response.error;
UserContent.messages = response.messages;
}
}
}
var Comment = {
insertComment: function(form, isAjax, returnFunction){
var extraQueryStr = null;
if(isAjax){
extraQueryStr = getFieldsForForm();
}else{
addFieldsToForm(form);
}
CMSUtil.interactWithServer(form, isAjax, Comment.buildComment, returnFunction, "insertComment", "/c", extraQueryStr);
},
deleteComment: function(form, isAjax, returnFunction){
var extraQueryStr = null;
if(isAjax){
extraQueryStr = getFieldsForForm();
}else{
addFieldsToForm(form);
}
CMSUtil.interactWithServer(form, isAjax, Comment.nullifyComment, returnFunction, "deleteComment", "/c", extraQueryStr);
},
updateComment: function(form, isAjax, returnFunction){
var extraQueryStr = null;
if(isAjax){
extraQueryStr = getFieldsForForm();
} else {
addFieldsToForm(form);
}
CMSUtil.interactWithServer(form, isAjax, Comment.buildComment, returnFunction, "updateComment", "/c", extraQueryStr);
},
buildComment: function(response){
Comment.name = null;
Comment.website = null;
Comment.title = null;
Comment.comment = null;
Comment.email = null;
Comment.rating = null;
Comment.ratingType = null;
Comment.commentType = null;
Comment.flagged = false;
Comment.isAuthor = false;
Comment.error = null;
Comment.status = null;
Comment.level = 0;
Comment.parentID = 0;
Comment.threadID = 0;
Comment.id = 0;
Comment.extID = null;
if(response.success == true){
Comment.id = response.id;
Comment.name = response.name;
Comment.comment = response.comment;
Comment.email = response.email;
Comment.website = response.website;
Comment.title = response.title;
Comment.isAuthor = response.isAuthor;
Comment.flagged = response.flagged;
Comment.status = response.status;
Comment.rating = response.rating;
Comment.ratingType = response.ratingType;
Comment.commentType = response.commentType;
if(Comment.status == "AUTHOR"){
Comment.isAuthor = true;
} else if(Comment.status != "APPROVED") {
Comment.flagged = true;
}
Comment.id = response.id;
Comment.threadID = response.threadID;
Comment.parentID = response.parentID;
Comment.level = response.level;
Comment.extID = response.extID;
} else {
Comment.error = response.error;
}
},
nullifyComment: function(response){
if(response.success == true){
Comment.comment = null;
Comment.email = null;
Comment.website = null;
Comment.title = null;
Comment.isAuthor = null;
Comment.flagged = null;
Comment.status = null;
Comment.id = 0;
Comment.threadID = 0;
Comment.parentID = 0;
Comment.level = 0;
Comment.extID = null;
} else {
Comment.error = response.error;
}
}
}
var Clickability = Clickability || {};
Clickability.SMTK = {
kP : 0,
aT : 0,
myInterval : null,
xPos : -1,
yPos : -1,
firstX : -1,
firstY : -1,
intervals : 0,
cid : -1 ,
did : 484857 ,
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 = 484857 ;
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.todaystmj4.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.todaystmj4.com/templates/JSO_determine_login_status?c=n&ran=" + Math.floor(Math.random()*1000000), "js")
}
}
// If there is no longer a UID (means they are logged out), turn the loggedout styles on, and make sure the cookies we set upon login get cleared out
else if(cookiejar.fetch("UID") == null){
modRule(".loggedout");
cookiejar.crumble("curUserInfo");
cookiejar.crumble("UID");
}
else{
modRule(".loggedout");
cookiejar.crumble("UID")
cookiejar.crumble("fakeuser")
cookiejar.crumble("curUserInfo");
}
</script>
<link type="text/css" rel="stylesheet" href="http://www.todaystmj4.com/templates/TMJ4.css?v=316"/>
<link type="text/css" rel="stylesheet" href="http://www.todaystmj4.com/templates/jquery.markitup.css?v=1"/>
<link type="text/css" rel="stylesheet" href="http://www.todaystmj4.com/templates/jquery.ui.datepicker.css?v=3"/>
<link type="text/css" rel="stylesheet" href="http://www.todaystmj4.com/templates/jquery.fancybox.css?v=1"/>
<link type="text/css" rel="stylesheet" href="http://www.todaystmj4.com/templates/Lib.Common_ad.css?v=12"/>
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="http://www.todaystmj4.com/includes/lib.ie.css" />
<![endif]-->
<script type="text/javascript" src="http://www.todaystmj4.com/templates/JI.Core.BBCode.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/templates/JI.Core.CommonFunctions.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.form.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.hint.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.maxlength.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.blockUI.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.markitup.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.bgiframe.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.timepicker.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.fancybox.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.pngFix.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.easing.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.tooltip.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.videoplayer.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/jquery.omniture_link_tracking.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/JBG.Core.CommonFunctions.js"></script>
<script language="javascript1.2">var trkcid=900484857;var partnerID=484857; var _hb=1;</script><script language="javascript1.2" src="http://www.todaystmj4.com/g/g/button/button_1.js"></script>
<!-- JI.Utility.GetTaxonomy :: 11 :: pixelRetargeting = $pixelRetargeting -->
<!-- FB# 13880
if((false && false) || (false && (false || false)))
-->
<script type="text/javascript">
//<![CDATA[
var path = "http://www.todaystmj4.com/120776124.html";
var pageName = "Home";
var siteId = 5;
var site = "todaystmj4.com";
var account = "jitmj4";
var sectionid = 484857;
var pageId = 120776124;
var category1 = "Index";
var category2 = "";
var category3 = "";
var category4 = "";
var btCategory = "News";
var section1 = "homepage";
var section2 = "";
var section3 = "";
var specialSection = "";
var type1 = "Home";
var type2 = "";
var author = "";
var source = "www.todaystmj4.com";
var tags = "";
var demo = "";
var column = "";
var sReferral = "";
var system = "Clickability";
//]]>
</script>
<!-- item.ID: 50092837 -->
<!-- item.ID: 50093102 -->
<!-- item.ID: 96067644 -->
<!-- item.ID: 124723084 -->
<!-- item.ID: 119434439 -->
<!-- item.ID: 57268202 -->
<!-- item.ID: 54556912 -->
<!-- item.ID: 54557137 -->
<!-- item.ID: 54557702 -->
<!-- item.ID: 54557792 -->
<!-- item.ID: 55779202 -->
<!-- item.ID: 54594457 -->
<!-- item.ID: 44004397 -->
<!-- item.ID: 53167157 -->
<!-- item.ID: 124723204 -->
<!-- item.ID: 124870949 -->
<!-- item.ID: 124722989 -->
<!-- item.ID: 63254332 -->
<!-- item.ID: 44004437 -->
<!-- item.ID: 91604104 -->
<!-- item.ID: 118194349 -->
<script type="text/javascript">
//<![CDATA[
yld_mgr = {};
yld_mgr.pub_id="24223857593";
yld_mgr.site_name="Todays TMJ4";
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=['Other'];
yld_mgr.slots.lb_slot.content_type_list=['fn_news'];
yld_mgr.slots.lb_slot.ad_format_list=["Standard Graphical","Rich Media"];
yld_mgr.slots.lb_slot.ad_marker="1";
yld_mgr.slots.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=['Other'];
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=['Other'];
yld_mgr.slots.peel_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=['Other'];
yld_mgr.slots.lb_bot_slot.content_type_list=['fn_news'];
yld_mgr.slots.lb_bot_slot.ad_format_list=["Standard Graphical","Rich Media"];
yld_mgr.slots.lb_bot_slot.ad_marker="1";
yld_mgr.slots.tile_ind1_slot = {};
yld_mgr.slots.tile_ind1_slot.ad_size_list=["120x90"];
yld_mgr.slots.tile_ind1_slot.ad_delivery_mode="ipatf";
yld_mgr.slots.tile_ind1_slot.cstm_content_cat_list=['Other'];
yld_mgr.slots.tile_ind1_slot.content_type_list=['fn_news'];
yld_mgr.slots.tile_atf_12060 = {};
yld_mgr.slots.tile_atf_12060.ad_size_list=["120x60"];
yld_mgr.slots.tile_atf_12060.ad_delivery_mode="ipatf";
yld_mgr.slots.tile_atf_12060.cstm_content_cat_list=['Other'];
yld_mgr.slots.tile_atf_12060.content_type_list=['fn_news'];
yld_mgr.slots.floatAd_slot = {};
yld_mgr.slots.floatAd_slot.ad_size_list=["1x1"];
yld_mgr.slots.floatAd_slot.ad_delivery_mode="ipstf";
yld_mgr.slots.floatAd_slot.cstm_content_cat_list=['floatAd'];
yld_mgr.slots.floatAd_slot.content_type_list=['fn_news'];
yld_mgr.slots.newswatch_slot = {};
yld_mgr.slots.newswatch_slot.ad_size_list=["88x31"];
yld_mgr.slots.newswatch_slot.ad_delivery_mode="ipatf";
yld_mgr.slots.newswatch_slot.cstm_content_cat_list=['Newswatch_Tile'];
yld_mgr.slots.newswatch_slot.content_type_list=['fn_news'];
yld_mgr.slots.tb_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=['Other'];
yld_mgr.slots.tb_slot.content_type_list=['fn_news'];
yld_mgr.slots.tb_slot.ad_format_list=["Standard Graphical","Rich Media"];
yld_mgr.slots.tb_slot.ad_marker="1";
yld_mgr.slots.ws_slot = {};
yld_mgr.slots.ws_slot.ad_size_list=["160x600"];
yld_mgr.slots.ws_slot.ad_delivery_mode="ipstf";
yld_mgr.slots.ws_slot.cstm_content_cat_list=['Other'];
yld_mgr.slots.ws_slot.content_type_list=['fn_news'];
yld_mgr.slots.ws_slot.ad_format_list=["Standard Graphical","Rich Media"];
yld_mgr.slots.ws_slot.ad_marker="1";
yld_mgr.slots.bb_slot = {};
yld_mgr.slots.bb_slot.ad_size_list=["300x250"];
yld_mgr.slots.bb_slot.ad_delivery_mode="ipatf";
yld_mgr.slots.bb_slot.cstm_content_cat_list=['Other'];
yld_mgr.slots.bb_slot.content_type_list=['fn_news'];
yld_mgr.slots.bb_slot.ad_format_list=["Standard Graphical","Rich Media"];
yld_mgr.slots.bb_slot.ad_marker="1";
yld_mgr.slots.tile125_slot1IS = {};
yld_mgr.slots.tile125_slot1IS.ad_size_list=["125x125"];
yld_mgr.slots.tile125_slot1IS.ad_delivery_mode="ipatf";
yld_mgr.slots.tile125_slot1IS.cstm_content_cat_list=['Ind_Spon_1'];
yld_mgr.slots.tile125_slot1IS.content_type_list=['fn_news'];
yld_mgr.slots.tile125_slot2IS = {};
yld_mgr.slots.tile125_slot2IS.ad_size_list=["125x125"];
yld_mgr.slots.tile125_slot2IS.ad_delivery_mode="ipatf";
yld_mgr.slots.tile125_slot2IS.cstm_content_cat_list=['Ind_Spon_2'];
yld_mgr.slots.tile125_slot2IS.content_type_list=['fn_news'];
yld_mgr.slots.tile125_slot3IS = {};
yld_mgr.slots.tile125_slot3IS.ad_size_list=["125x125"];
yld_mgr.slots.tile125_slot3IS.ad_delivery_mode="ipatf";
yld_mgr.slots.tile125_slot3IS.cstm_content_cat_list=['Ind_Spon_3'];
yld_mgr.slots.tile125_slot3IS.content_type_list=['fn_news'];
yld_mgr.slots.tile125_slot4IS = {};
yld_mgr.slots.tile125_slot4IS.ad_size_list=["125x125"];
yld_mgr.slots.tile125_slot4IS.ad_delivery_mode="ipatf";
yld_mgr.slots.tile125_slot4IS.cstm_content_cat_list=['Ind_Spon_4','Level_B_Tile','Level_B1_Tile'];
yld_mgr.slots.tile125_slot4IS.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=['Other'];
yld_mgr.slots.tb_bot_slot.content_type_list=['fn_news'];
yld_mgr.slots.tile125_slot = {};
yld_mgr.slots.tile125_slot.ad_size_list=["125x125"];
yld_mgr.slots.tile125_slot.ad_delivery_mode="ipbtf";
yld_mgr.slots.tile125_slot.cstm_content_cat_list=['Other'];
yld_mgr.slots.tile125_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=['Other'];
yld_mgr.slots.tile_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=['Other'];
yld_mgr.slots.hb_slot.content_type_list=['fn_news'];
yld_mgr.slots.tile_stf_12060 = {};
yld_mgr.slots.tile_stf_12060.ad_size_list=["120x60"];
yld_mgr.slots.tile_stf_12060.ad_delivery_mode="ipstf";
yld_mgr.slots.tile_stf_12060.cstm_content_cat_list=['Other'];
yld_mgr.slots.tile_stf_12060.content_type_list=['fn_news'];
yld_mgr.slots.smrec_atf_180x150 = {};
yld_mgr.slots.smrec_atf_180x150.ad_size_list=["180x150"];
yld_mgr.slots.smrec_atf_180x150.ad_delivery_mode="ipatf";
yld_mgr.slots.smrec_atf_180x150.cstm_content_cat_list=['Other'];
yld_mgr.slots.smrec_atf_180x150.content_type_list=['fn_news'];
yld_mgr.slots.vb_slot = {};
yld_mgr.slots.vb_slot.ad_size_list=["120x240"];
yld_mgr.slots.vb_slot.ad_delivery_mode="ipatf";
yld_mgr.slots.vb_slot.cstm_content_cat_list=['Other'];
yld_mgr.slots.vb_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=['Other'];
yld_mgr.slots.bb_left_slot.content_type_list=['fn_news'];
yld_mgr.slots.bb_left_slot.ad_format_list=["Standard Graphical","Rich Media"];
yld_mgr.slots.bb_left_slot.ad_marker="1";
yld_mgr.slots.fb_slot = {};
yld_mgr.slots.fb_slot.ad_size_list=["468x60"];
yld_mgr.slots.fb_slot.ad_delivery_mode="ipatf";
yld_mgr.slots.fb_slot.cstm_content_cat_list=['Other'];
yld_mgr.slots.fb_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=['Other'];
yld_mgr.slots.tile2_slot.content_type_list=['fn_news'];
yld_mgr.slots.nw_bot_slot = {};
yld_mgr.slots.nw_bot_slot.ad_size_list=["250x30"];
yld_mgr.slots.nw_bot_slot.ad_delivery_mode="ipatf";
yld_mgr.slots.nw_bot_slot.cstm_content_cat_list=['news_watch'];
yld_mgr.slots.nw_bot_slot.content_type_list=['fn_news'];
yld_mgr.slots.bgimg_slot = {};
yld_mgr.slots.bgimg_slot.ad_size_list=["1x1"];
yld_mgr.slots.bgimg_slot.ad_delivery_mode="ipbtf";
yld_mgr.slots.bgimg_slot.cstm_content_cat_list=['BGImage'];
yld_mgr.slots.bgimg_slot.content_type_list=['fn_news'];
//]]>
</script>
<script type="text/javascript" src="http://e.yieldmanager.net/script.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/JI_advertise.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/JI_trafficTracking.js"></script>
<!-- End SiteCatalyst code version: H.15.1. -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19051957-3']);
_gaq.push(['_setDomainName', 'todaystmj4.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- End Tracking Scripts -->
<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=900484857";_q+="&7=484857";_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=900484857";_qc+="&7=484857";_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=900484857&7=484857&18=0.4876745470341526">
</noscript>
</head>
<!-- Added #facfe2 color to side wells -->
<body style="">
<div id="fb-root"></div>
<script type="text/javascript">
$(function () {
FB.init({
appId: '169946563061269',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true, // enable XFBML and social plugins
oauth: true, // to adapt to Oauth 2.0
channelUrl: 'http://www.todaystmj4.com/templates/channel.html' // custom channel
});
});
// Load the SDK Asynchronously
(function () {
var js, id = 'facebook-jssdk'; if (document.getElementById(id)) { return; }
js = document.createElement('script'); js.id = id; js.async = true;
js.src = document.location.protocol + "//connect.facebook.net/en_US/all.js#xfbml=1";
document.getElementsByTagName('head')[0].appendChild(js);
})();
</script>
<script type="text/javascript">
function logFBUser() {
if (window.console && window.console.log) { console.log("inside logFBUser"); }
try {
var logoutForm = $("form[name=logoutSSO]");
if(logoutForm && logoutForm.length > 1) {
logoutForm = $("form[name=logoutSSO]")[0];
}
if (window.console && window.console.log) { console.log("logoutForm: ", logoutForm); }
if (window.console && window.console.log) { console.log("logoutForm.length: ",logoutForm.length); }
if (window.console && window.console.log) { console.log("logoutForm[0].id: ", $(logoutForm[0]).attr("id")); }
FB.logout(function(response) {
$(logoutForm).find("input[name=forceSubmit]").val("false");
if (window.console && window.console.log) { console.log("logFBUser: submit 1"); }
logoutForm.submit();
});
} catch (e) {
if (window.console && window.console.log) { console.log("logFBUser error: ", e.message); } //this executes if jQuery isn't loaded
}
// submit the form if FB.logout was not fired
setTimeout(ssoSubmit, 10000);
}
function ssoSubmit() {
if (window.console && window.console.log) { console.log("inside ssoSubmit"); }
try {
var logoutForm = $("form[name=logoutSSO]");
if(logoutForm && logoutForm.length > 1) {
logoutForm = $("form[name=logoutSSO]")[0];
}
if (window.console && window.console.log) { console.log("logoutForm: ", logoutForm); }
if ($(logoutForm).find("input[name=forceSubmit]").val() == "true") {
if (window.console && window.console.log) { console.log("---------- do submit"); }
if (window.console && window.console.log) { console.log("logFBUser: submit 2"); }
logoutForm.submit();
}
} catch (e) {
if (window.console && window.console.log) { console.log("ssoSubmit: error: ", e.message); }
if (window.console && window.console.log) { console.log("---------- do reload"); }
//window.location.reload();
window.location.href = "http://www.todaystmj4.com/s?action=doLogout&rurl=http%3A%2F%2Fwww.todaystmj4.com%2F";
}
}
</script>
<script type="text/javascript" src="http://www.todaystmj4.com/includes/formcheck.js?v=2"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/templates/Lib.MembershipValidation.js"></script>
<script type="text/javascript" src="http://www.todaystmj4.com/templates/Lib.MembershipFacebookIntegration.js?v=81"></script>
<script type="text/javascript">
if (window.console && window.console.log && console.group) {
console.group("> MASTER");
console.group("> > cms user info");
console.log("--- username = '$cms.subscriptionUser.username'");
console.log("--- email = '$cms.subscriptionUser.email'");
console.log("--- externalSSOUser = '$cms.subscriptionUser.externalSSOUser'");
console.log("--- externalProfileId = '$cms.subscriptionUser.externalProfileId'");
console.groupEnd();
console.group("> > cookie user info");
console.log("+++ UID = '" + cookiejar.fetch("UID") + "'");
console.log("+++ userName = '" + subcookiejar.fetch("curUserInfo", "userName") + "'");
console.log("+++ ssoUser = '" + subcookiejar.fetch("curUserInfo", "ssoUser") + "'");
console.log("+++ ssoProfileId = '" + subcookiejar.fetch("curUserInfo", "ssoProfileId") + "'");
console.groupEnd();
console.group("> > fbs_169946563061269 cookie info:");
console.log(cookiejar.fetch("fbs_169946563061269"));
console.groupEnd();
console.groupEnd();
}
</script>
<p id="top"><a href="#nav" tabindex="-1">skip to nav</a> <a href="#content" tabindex="-1">skip to content</a></p>
<div id="page" class="todaystmj4 layout-home home">
<div class="loginbar">
<ul>
<li>
<a href="http://www.todaystmj4.com/s?action=login&rurl=http%3A%2F%2Fwww.todaystmj4.com%2F" class="first loggedout">Login</a>
<a href="http://www.todaystmj4.com/s?action=editReg&rurl=http%3A%2F%2Fwww.todaystmj4.com%2F" class="first loggedin">Welcome
<script type="text/javascript">
var userName = subcookiejar.fetch("curUserInfo", "userName");
if(userName != null && userName != "undefined" && userName != "null" && userName.toLowerCase() != "false") {
document.write(stringTruncate(userName,9));
}
</script>
</a>
</li>
<li>
<a href="http://www.todaystmj4.com/s?action=reg&rurl=http%3A%2F%2Fwww.todaystmj4.com%2F" class="loggedout">Register</a>
<script type="text/javascript">
var ssoUser = subcookiejar.fetch("curUserInfo", "ssoUser");
if(ssoUser != null && ssoUser != "undefined" && ssoUser != "null" && ssoUser.toLowerCase() == "true") {
document.write("<form name='logoutSSO' method='post' action='/s' style='display:inline;'><input type='hidden' name='action' value='doLogout' /><input type='hidden' name='forceSubmit' value='true' size='2px' />");
document.write("<a href='javascript:void(0);' onClick='logFBUser();' class='loggedin'>Logout</a>");
document.write("</form>");
} else {
document.write("<a href='http://www.todaystmj4.com/s?action=doLogout&rurl=http%3A%2F%2Fwww.todaystmj4.com%2F' class='loggedin'>Logout</a>");
}
</script>
</li>
</ul>
</div><!-- / .loginbar -->
<div id="head">
<h1><a href="/">TODAY'S TMJ4</a></h1> <!-- / -->
<div class="block leaderboardAd">
<div class="odd pos_false block ad id_44003987 Yahoo size728x90">
<script type="text/javascript">
<!--
yld_mgr.place_ad_here("lb_slot");
// -->
</script>
</div> </div> </div>
<div id="nav">
<ul>
<li class="section-primary" id="nav_Home"><a href="/">Home</a>
</li>
<li class="section-primary" id="nav_News"><a href="/news/local">News</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="dropdown-inner depth1">
<div class="group">
<h4><a class="level_0" id="News" href="/news">News</a></h4>
<ul><li id="Local"><a href="/news/local">Local</a></li></ul>
<ul><li id="Politics"><a href="/news/politics">Politics</a></li></ul>
<ul><li id="National & World"><a href="/news/national">National & World</a></li></ul>
<ul><li id="Your Story"><a href="/multimedia/photos/?t=reader">Your Story</a></li></ul>
<ul><li id="Photo Galleries"><a href="/multimedia/photos/">Photo Galleries</a></li></ul>
<ul><li id="Videos"><a href="/multimedia/videos/">Video Gallery</a></li></ul>
</div>
</div>
</div>
</div>
</li>
<li class="section-primary" id="nav_Weather"><a href="http://www.todaystmj4.com/weather">Weather</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="dropdown-inner depth1">
<div class="group">
<h4><a href="http://www.todaystmj4.com/weather">StormTeam4 Weather</a></h4>
<ul>
<li><a href="http://www.todaystmj4.com/multimedia/photos/122545739.html?page=1">Weather Kids</a></li>
</ul>
<ul>
<li><a href="http://www.todaystmj4.com/weather/forecasts/7dayplanner/">7-Day Planner</a></li>
</ul>
<ul>
<li><a href="http://www.todaystmj4.com/weather/maps/radars">Radar</a></li>
</ul>
<ul>
<li><a href="http://www.todaystmj4.com/weather/alerts/">Alerts</a></li>
</ul>
<ul>
<li><a href="http://www.todaystmj4.com/weather/interactive/mypersonalforecast/">My Personal Forecast</a></li>
</ul>
</div>
</div> </div>
</div>
</li>
<li class="section-primary" id="nav_Sports"><a href="/sports">Sports</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="dropdown-inner depth1">
<div class="group">
<h4><a class="level_0" href="/sports">Sports</a></h4>
<ul><li><a href="/sports/askaaron">Ask Aaron</a></li></ul>
<ul><li><a href="/sports/fridayfootballfrenzy">Friday Football Frenzy</a></li></ul>
</div>
</div>
</div>
</div>
</li>
<li class="section-primary" id="nav_Traffic"><a href="/traffic">Traffic</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="dropdown-inner depth1">
<div class="group">
<h4><a href="/traffic">Traffic</a></h4>
<ul>
<li><a target="_blank" href="http://www.dot.wisconsin.gov/travel/milwaukee/cameras.htm">Traffic Cams</a></li>
<li><a target="_blank" href="http://www.traffic.com/Milwaukee-Traffic/Milwaukee-Traffic-Map.html?AWOPARTNER=WTMJ-TV">Maps</a></li>
</ul>
</div>
</div> </div>
</div>
</li>
<li class="section-secondary" id="nav_TMJ4Schedule" class="alt"><a href="/schedule">What's On</a>
</li>
<li class="section-secondary" id="nav_Features" class="alt"><a href="/features">Features</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="dropdown-inner depth1">
<div class="group">
<h4><a class="level_0" href="/features">Features</a></h4>
<ul>
<li><a href="/features/iteam">I-Team</a></li>
<li><a href="/features/dirtydining">Dirty Dining</a></li>
</ul><ul>
<li><a href="/features/speedbusters">Speedbusters</a></li>
<li><a href="/features/specialassignment">Special Assignments</a></li>
</ul><ul>
<li><a href="/features/call4action">Call 4 Action</a></li>
<li><a href="/features/positivelymilwaukee">Positively Milwaukee</a></li>
</ul><ul>
<li><a href="/features/whatshot">What's Hot?</a></li>
<li><a href="/features/asktheexpert">Ask the Expert</a></li>
</ul><ul>
<li><a href="/features/seenontmj4">Seen on TMJ4</a></li>
<li><a href="http://health.todaystmj4.com/global/Category.asp?c=87053"><span style="color:maroon">Health Connections</span></a></li>
</ul><ul>
<li><a href="http://www.contestmvp.com/"><span style="color:maroon">Lottery</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li class="section-secondary" id="nav_Blogs" class="alt"><a href="/blogs">Blogs</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="dropdown-inner depth1">
<div class="group">
<h4><a class="level_0" href="/blogs">Blogs</a></h4>
<ul>
<li><a href="/blogs/lanceallan">Lance Allan: Sports Glance with Lance</a></li>
<li><a href="/blogs/briangotter">Brian Gotter: Welcome Back, Gotter</a></li>
</ul><ul>
<li><a href="/blogs/susankim">Susan Kim: Susan Cam</a></li>
<li><a href="/blogs/carolemeekins">Carole Meekins: Positively Milwaukee</a></li>
</ul><ul>
<li><a href="/blogs/vincevitrano">Vince Vitrano: Not For Broadcast</a></li>
<li><a href="/blogs/shellywalcott">Shelley Walcott: Don't Tell The Boss</a></li>
</ul><ul>
<li><a href="/blogs/stevewexler">Steve Wexler: Boss's Blog - The Inside Scoop at Radio City</a></li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li class="section-secondary" id="nav_Links" class="alt"><a href="/links">Links</a>
<div class="dropdown">
<div class="dropdown-inner">
<div class="group">
<h4><a class="level_0" href="/links">Links</a></h4>
<ul>
<li><a href="http://www.rxlocker.com">RX Locker pill holder recall</a></li>
<li><a href="http://news.gerber.com/pr/gerber/consumer-notification-gerber-voluntarily-230198.aspx">Gerber recall</a></li>
<li><a href="http://www.cheesehead.com/">Foamation Cheesehead</a></li>
</ul><ul>
<li><a href="https://www.upaf.org/news/?method=detail&nid=124">UPAF "I Heart Art"</a></li>
<li><a href="http://dwd.wisconsin.gov/">Jobs for Veterans</a></li>
<li><a href="http://gadzuricfoundation.org/cinderella-project.html ">Cinderella P