$(document).ready(function() {
	$('#sidebar ul li > ul').parent().addClass('arrow');
});

//open all external links in a new window
$(document).ready(function() {
	$('a[href^="http://"],a[href^="https://"]').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');
});


