$(function(){
	$('.side-nav-select,.bottom-select,.right-nav-select').each(function(){
		$(this).change(function(event){
			var url = "";
			$("option:selected", this).each(function(){
				url = this.value;
				if(url.length > 0){
					// If link contains http:// but doesn't contain this domain, make it external
					if((url.indexOf('http://') >= 0 || url.indexOf('https://') >= 0) && url.indexOf('alleninsuranceandfinancial.com') < 0){
						window.open( url );
					}else{
						window.location = url;
					}
				}
			});
		});
	});
});