function dropDowns() {
	$("#topnavsurround ul li").not($("#topnavsurround ul li li")).hover(function() {
		$(this).find("ul:nth-child(2)").css("display","block");
		$(this).addClass("navon");
	},function(){
		$(this).find("ul:nth-child(2)").css("display","none");
		$(this).removeClass("navon");
	});
}

function removeLast() {
	$('.eventlandingimage:last').css("border","0");
}

$(document).ready(dropDowns);
$(document).ready(removeLast);

