$(document).ready(function() {

	// Open external links in new window
	$("a.link-external, a.buy-now").attr('target', '_blank');
	
	// Remove border on nav for last LI
	$("ul#nav-events li:last-child a").css('border', 'none');
	
	// Submit ticket order
	$("a.buy-multiple").click(function(e){
		// e.preventDefault();
		// Get sibling SELECT selected value
		var code = $(this).parent().children("select option:selected").val();
		$(this).attr('href', 'https://dispatch.billettluka.no/Queue/Dispatch.iticket?moduleId=10&companyId=1148&arrangementId=' + code);
		return true;
	});

});

