

/* method:  mq.init();
 * purpose: for ISSUES-8700, redirect to mobile site if on homepage and if viewport 
 *          size is <= 480px, uses element width based on media queries declared in style.css
 * 
 * 20110616 NB
 */
var mq = {
    init: function () {
        "use strict";
        if ( window.location.pathname === '/' && $('#nytrmg_mq').width() === 300 ) {
            window.location.href = 'http://m.northbaybusinessjournal.com';
        }
    }
};

jQuery(function($) {
  
    // form validation for something ?
    $("#contactForm").validate();
});



