// BUILT ON TOP OF JQUERY ////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
/*************************************************************************************************/

$(document).ready(function() {
	 
      // this highlights the main nav link when the cursor is within its sibling ul
	  $('#nav ul').hover(function() {
        $(this).prev().addClass('highlight');
      }, function() {
        $(this).prev().removeClass('highlight');
      });
					   
});


