// JavaScript Document


//========================================================================================\\
//
// DROPDOWN MENU CODE
//
//=========================================================================================\\

$(document).ready(function(){



$('#nav ul li').hover(function(){
	$(this).find('ul').addClass('live');						   					   
	}, function(){
	$(this).find('ul').removeClass('live');
	});





});



