$(function() {
	$('#headerInnerRotater').cycle({
		'fx': 'fade',
		'speed': 3000
	});
	
	$('#print-page').click(function() {
		window.print();
	});
	
	applyExternalLinks();
});

function applyExternalLinks() {
	var externals = $('a[rel="external"], a[rel="external nofollow"]');
	
	externals.unbind('click');
	externals.click(function() {
        window.open($(this).attr('href'));
        return false;
    });
}