/**
 * @author shevchenquot
 */

$(document).ready(function() {	
	$('#mainmenu li').each(function(i) {
		if (i < 5) {
			$('#submenu_btn' + i).hide();
			
			$(this).mouseover(function() {
				$('#submenu_btn' + i).show();
			})
			.mouseout(function(){
				$('#submenu_btn' + i).hide();
			});
			
			$('#submenu_btn' + i).mouseover(function() {
				$(this).show();
			})
			.mouseout(function(){
				$(this).hide();
			});
		}
	});
});

