var arr_onload = Array();
if (typeof($) == 'function') {
	$(document).ready(function() {
		$('#menu_main li').hover(
			function() {
				//$('li', this).css('margin-left', $(this).position()['left'] + ($(this).width() / 2 - 9) + 'px');
				$('ul', this).show('fast');
			},
			function() {
				$('ul', this).hide('fast');
			}
		);
		for (var i=0;i<arr_onload.length;i++) {
			arr_onload[i]();
		}
	});
} else {
	window.onload = function() {
		for (var i=0;i<arr_onload.length;i++) {
			arr_onload[i]();
		}
	}
}
