/*
--------------------------------------------------------
ANNUNCI.IT JS FUNCTIONS - by Emanuele Pelliccione 
--------------------------------------------------------
*/

/*
--------------------------------------------------------
EVENTS 
--------------------------------------------------------
*/

window.onload = function() {
	
	if( document.getElementById ) { 
	
		if( document.getElementById( "filter" ) ) {
			
			document.getElementById( "filter" ).onchange = function() {
				
				document.getElementById( "sorting" ).submit();
				
			}
				
		}
    
		if( document.getElementById( "mailinfo" ) ) {
	
			var info = document.getElementById( "mailinfo" );
		
			if( info ) {
      		
				info.innerHTML = '<a href="mailto:infoit'+ '@'+'pangora'+'.'+'com">infoit'+ '@'+'pangora'+'.'+'com</a>';
    
			}
			
		}
		
		if( document.getElementById( "mailportal" ) ) {
		
			var portal = document.getElementById( "mailportal" );
			
			if( portal ) {
      		
				portal.innerHTML = '<a href="mailto:portal.it'+ '@'+'pangora'+'.'+'com">portal.it'+ '@'+'pangora'+'.'+'com</a>';
    
			}
			
		}
		
		if( document.getElementById( "mailpress" ) ) {
		
			var press = document.getElementById( "mailpress" );
			
			if( press ) {
      		
				press.innerHTML = '<a href="mailto:portal.it'+ '@'+'pangora'+'.'+'com">portal.it'+ '@'+'pangora'+'.'+'com</a>';    
			
			}
			
		}

	}

}