$(document).ready(function () {
    menu();
    try {
        gallery();
    }
    catch (e) { }
});

function menu() {
	var menu = $('.menu1');
	var lnk = menu.find('div, a').not(menu.find('ul a'));
	var submenu = menu.find('ul');
	var submenuLi = submenu.find('li');
	var submenuA = submenuLi.find('a');
	
	lnk.each(function() {
		$(this).hover(
			function() {$(this).next().show(0)},
			function() {$(this).next().hide(0)}
		)
	})
	
	submenu.each(function() {
		$(this).hover(
			function() {$(this).show(0)},
			function() {$(this).hide(0)}
		);
	})
	
	submenuLi.each(function() {
		$(this).hover(
			function() {
				$(this).find('ul').show(0).css('marginTop', -$(this).height())
			},
			function() {
				$(this).find('ul').hide(0)
			}
		)
	})
}

function gallery() {
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'fast',
		theme: 'light_square',
		allowresize: true,
		default_height: 400
	});
}

