jQuery(document).ready( function () {

	jQuery('.localpage #news_box .newsbox_inside').hide();
	jQuery('.localpage #news_box .newsbox_header ').toggleClass('inaktiv');

	jQuery('.newsbox_header').click(function() {
		
		jQuery(this).toggleClass('inaktiv');
		jQuery(this).next().slideToggle('normal');
	
	});
	
	jQuery('#nav_location').mouseenter( function () {
		jQuery('#submenu_locations_container').show();
		jQuery('#menu_enry_rollover').show();
		jQuery('#submenu_box_container').slideDown();
	});
	
	jQuery('#submenu_locations_container').mouseleave( function () {
		jQuery('#submenu_box_container').slideUp( 'normal',  function() {
			jQuery('#menu_enry_rollover').hide();
			jQuery('#submenu_locations_container').hide();
		});
	});
	
	jQuery('#menu_enry_rollout1').mouseenter( function () {
		jQuery('#submenu_box_container').slideUp( 'normal',  function() {
			jQuery('#menu_enry_rollover').hide();
			jQuery('#submenu_locations_container').hide();
		});
	});
	
	jQuery('#menu_enry_rollout2').mouseenter( function () {
		jQuery('#submenu_box_container').slideUp( 'normal',  function() {
			jQuery('#menu_enry_rollover').hide();
			jQuery('#submenu_locations_container').hide();
		});
	});
	
	
	jQuery('.galbox_thumbs_element').click( function () {
		jQuery('#galbox_image').attr('src', jQuery(this).data('targetSrc'));
		jQuery('.galbox-overlay').hide();
		jQuery(this).find('.galbox-overlay').show();
	});
	

});
