$(function() {
	$("a").click(function() {
		if ($(this).attr("href").indexOf("http") == 0) {
			window.open($(this).attr("href"));
			return false;
		}
	});
	
	$("select.dropmenu").change(function() {
		$("select option:selected").each(function() {
			if ($(this).attr("value").indexOf("http") == 0) {
				window.open($(this).attr("value"));
			}
			else {
				window.location = $(this).attr("value");
			}
		});
	});
});