jQuery(document).ready(function() {
	
	$('A[rel="external"]').click(function() {
        window.open( $(this).attr('href') );
        return false;
    });

	$("#intro ul li").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});

	$("#content #intro .lightbox").fancybox({
		'titleShow': false,
		'transitionIn': 'none',
		'transitionOut': 'none'
	});

});

