jQuery.noConflict();

jQuery(document).ready(function($) {
	$('#nav ul ul li').hover(
    function () {
      $(this).addClass('hover');
    }, 
    function () {
      $(this).removeClass('hover');
    }
  );

  $('div.image-grid ul li:nth-child(3n+1)').each(function(i, el) {
    $(el).addClass('first');
  });
   // code to execute when the DOM is ready
});
