$(function(){
	
	// open all external Websites in blank window	
	$("a[href*='http']:not([href*='hologic.de'])").click(function(){
		this.target = "_blank";
	});
	
	// open all pdf-files in blank window	
	$("a[href$='.pdf']").click(function(){
		this.target = "_blank";
	});	
 
	// load scrollto script
	if($('#map').length > 0) {
		$.getScript("/js/lib/jquery.scrollTo-min.js");
	}
	
	$("#nav .hlist > ul > li:last-child").addClass("last");
	
	
});
