/**
 * Functionality for Pop-up of info box on click
 * 
 * @author efrister
 */
$(document).ready(function(){
	infoBoxes.init();
});

var infoBoxes = {
	
	/**
	 * Sets the onclick functions
	 */
	init : function () {
		//Set onclicks for info-icons
		$('img.info,img.infoLower').click(function() {
			infoBoxes.hideAll();
			$(this).next().css('display', 'block');
		});
		
		//set onclicks for close buttons
		$('img.toolClose').click(function() {
			$(this).parents('div.infoBox').css('display', 'none');
		});
	},
	/**
	 * Hides all info boxes
	 */
	hideAll : function() {
		$('div.infoBox').css('display', 'none');
	}
};
