	
	window.onload = function(){o_functionCall = initialize();};
	
	function initialize(){
		/**** Images preloading ******/
		i_functionCall = MM_preloadImages('images/esomar_hover.jpg');
		i_flags = Array('GR','GB','CA','ES');
		i_flagsCounter = 0;
		while(i_flagsCounter < i_flags.length){
			i_functionCall = MM_preloadImages('images/flags/'+i_flags[i_flagsCounter]+'.png');
			i_flagsCounter++;
		}
		return 0;
	}
	
	function hoverFileDiv(hfd_element,hfd_mode){
		if(hfd_mode == true){
			hfd_element.style.backgroundImage = 'url(images/blank.png)';
			hfd_element.style.backgroundColor = '#23252e';
			hfd_element.style.border = '1px solid #373737';
		}else{
			hfd_element.style.backgroundImage = 'url(images/files_background.jpg)';
			hfd_element.style.backgroundColor = '#1e212a';
			hfd_element.style.border = '1px solid transparent';
			hfd_element.style.borderTop = '1px solid #3a3e49';
			hfd_element.style.borderBottom = '1px solid #0a0a0a';
		}
		
		return 0;
	}