/* Starging JQuery LightBox */
$(function() {
	
	$('.lightBoxGallery a').lightBox();
});

/* On load actions */
$(document).ready(function() {
	
	/* Historie */
	$('h4.historyTitle + div').hide();
	$('#historyClickInfo').css('visibility', 'visible');
	
	// fixing problem with toggling position
	$('h4.historyTitle + div').each(
		function(index) {
			var topMargin = $(this).children().first().css('margin-top');
			$(this).children().first().css('margin-top', '0px');
			$(this).parent().css('margin-top', topMargin)
		}
	);
	
	$('h4.historyTitle').click(function() {
		$(this).next().slideToggle();
	});
});
