// JavaScript Document

$(document).ready(
				function(){
					$('#headerimage').innerfade({
						speed: 5000,
						timeout: 10000,
						type: 'sequence',
						containerheight: '142px'
					});
					
					$('.fade').innerfade({
										speed: 5000,
										timeout: 1000,
										type: 'sequence',
										containerheight: '1.5em'
									});
});

    




function blurLinks(){
if(document.links)
for(i=0; i<document.links.length; i++)
document.links[i].onfocus=function(){this.blur();}
}
document.onmousedown=blurLinks
