/* script.js - the controller*/

/* SUCKERFISH */
sfHover = function() {
    var sfEls = $(".nav").children("li");
    for (var i=0; i<sfEls.length; i++) {
        sfEls.each(function(){
            $(this).hover(function() {
                $(this).addClass("sfhover");
            }, function(){
                $(this).removeClass("sfhover");
            });
        });
    }
}
$(document).ready(function(){
   sfHover();
   $('input.inputhint').inputhint();
});
