$(document).ready(function(){
	/*
	$('.dropdown ul li').hover(function(){

			$(this).addClass('over');

	}, function () {
			$(this).removeClass('over');
    })	
	
	$('.dropdown ul li.level2_top').hover(function(){

			$(this).addClass('level2_topover');

	}, function () {
			$(this).removeClass('level2_topover');
    })	
	
	$('.dropdown ul li.level2_bottom').hover(function(){

			$(this).addClass('level2_bottomover');

	}, function () {
			$(this).removeClass('level2_bottomover');
    })		
	*/
});