$(document).ready(function(){
						$('ul.menu li').hover(function(){
							if ( $(this).find('ul.hoverMenu').size()) {
								if ( $(this).find('.currentItem').size()) {
										  $(this).find('.currentLeft').hide();
										  $(this).find('.currentRight').hide();
										  $(this).find('.currentItem').addClass('noCurrentItem');
										  $(this).addClass('currentHover');
										  $(this).find('ul.hoverMenu').addClass('currentHoverMenu');
										  $(this).addClass('hoverParentMenu');
										  $(this).find('.currentItem .insteadLine').show();
										  $(this).find('ul.hoverMenu').show();
								}
										  $(this).addClass('hoverParentMenu');
										  $(this).find('.parentItemTop .insteadLine').show();
										  $(this).find('ul.hoverMenu').show();
							}
										  },
										function(){
										  $(this).removeClass('hoverParentMenu');
										  $(this).find('.parentItemTop .insteadLine').hide();
										  $(this).find('ul.hoverMenu').hide();
										  $(this).find('.currentItem').removeClass('noCurrentItem');
										  $(this).find('.currentLeft').show();
										  $(this).find('.currentRight').show();
										  $(this).removeClass('currentHover');
										  $(this).find('.currentItem .insteadLine').hide();
										  });


});
