function footer(){
	var d = new Date();
	if (d.getFullYear() > 2010)
		document.write('&#169; Adler Aviation Ltd. 2010-' + d.getFullYear() + '. All rights reserved. | <a href="index-5.html">Privacy Policy</a>');
	else
		document.write('&#169; Adler Aviation Ltd. ' + d.getFullYear() + '. All rights reserved. | <a href="index-5.html">Privacy Policy</a>');
}

//show 2
$(document).ready(function() {
	$('div#show2:eq(0)> div:gt(0)').hide();
	$('div#show2:eq(0)> h3').click(function() {
		$(this).next('div:hidden').slideDown('fast')
		.siblings('div:visible').slideUp('fast');
	}); 
});
//$('div#show2:eq(0)> h5').click(function()
