/**
 * DROPDOWN
 * События для показа/скрытия блоков меню
 */
jQuery(document).ready(function(){
	
	jQuery('.dropdown_link_area').hover(function(){
		
		var offset = jQuery(this).position();
		var height = jQuery(this).height();
				
		jQuery('.dropdown_menu', this).css({
				top: offset.top+height+'px', 
				left: offset.left+'px'})
			.show();
		
	}, function(){
		
		jQuery('.dropdown_menu', this).hide();
		
	});
	
	
});
