$(window).bind("load", function() { 

var listHeight = $(".border-1").height();
listHeight = Math.ceil(listHeight);
if (listHeight%4 != 0) {
	var resize = listHeight%4;
	listHeight = listHeight +(4 - resize);
}
$(".arrow.no-script").removeClass("no-script");
$(".border-2").height(listHeight);
$("#arrow-point").width(44+(.25*listHeight));
$("#arrow-point, .border-arrow-top, .border-arrow-bottom").height(listHeight +4);
});