/*
$(document).ready(function() {
	// Open all external links in new window
	$("a[@href^=http]").each( function(){
		$(this).attr('target', '_blank');
	})
});
*/
