jQuery(document).ready(function(){
	jQuery('#menu').find('li').hover(function(){
		jQuery(this).find('span').show();
		jQuery(this).find('span').find("strong").css("height", jQuery(this).find('span').outerHeight());
	}, function(){
		jQuery(this).find('span').hide();
	});
	
	if (jQuery('#photos').length > 0) {
		jQuery('#photos').galleryView({
			panel_width: 756,
			panel_height: 310,
			frame_width: 50,
			frame_height: 50
		});
	}
}); 
