$(document).ready(function(){
	$("#top_nav li").hover(function() { 
		$(this).find("ul.subnav").slideDown().show();
		$(this).find('a').addClass('menu_hover');
	}, function(){
		$(this).find("ul.subnav").hide(); 
		$(this).find('a').removeClass('menu_hover');
		$(this).find('ul.subnav li').hover(function() {
			$(this).parent().prev().addClass('menu_hover');
		}, function() {
			$(this).parent().prev().removeClass('menu_hover');
		});
	});
	$('.unclickable').click(function(event) {
		event.preventDefault();
	});
	$('#photos').galleryView({
		panel_width: 1000,
		panel_height: 315,
		transition_speed: 1000,
		transition_interval: 5000,
		nav_theme: 'dark',
		border: 'none',
		pause_on_hover: true
	});
});

