/* Author: Carl Brown

*/

$(document).ready( function() {

  // trigger shopping and classifieds drop downs
  $(".hotshop-wrapper").hover(function(){
    $(this).children("div").stop(true, true).slideDown('fast');
  }, function() {
    $(this).children("div").stop(true, true).slideUp('fast');
  });
  
});

// Infield Labels in older browsers that don't support HTML5 placeholder attribute
Modernizr.load({
  test: Modernizr.input.placeholder,
  nope: 'js/libs/jquery.infieldlabel.min.js'
});

