$(document).ready(function(){
	$('.colorbox').colorbox();
	
	$('#menu1 > li > a[id^=menu_]').each(function(){
		var id = $(this).attr('id').substr(5);
		if($('#submenu_'+ id).length){
			var $this = $(this);
			$(this).parent().hover(function(){
				$this.addClass('hover');
				$('#menu2').stop(true, true).slideUp();
				$('#submenu_'+ id).stop(true, true).slideDown();
			}, function(){
				$this.removeClass('hover');
				$('#menu2').stop(true, true).slideDown();
				$('#submenu_'+ id).stop(true, true).slideUp();
			});
		}
	});
});
