/* Controller Scripts */
$(document).ready(function(){

/* INPUTHINT */
if ( jQuery().inputhint ){
    $('input.inputhint').inputhint();
};

/* NAV TREE */
if ( jQuery().navtree ){
    $('.navtree').navtree();
};

/* Form Validation */
if ( jQuery().validateform ){
  $('.validateform').validateform();   
};

/* FEATURED BIZ GALLERY */
if ( jQuery().bizgallery ){
    $('.featured-business-gallery').bizgallery();
};

/* Resources Lsit - Open when on Resources Page */
var $url = document.location.href;
if($url.indexOf("resources") > -1) {
     $('.resources').css('display','block');
};

}); /* END: DOCUMENT.READY */
