// Dropdown
$(document).ready(function(){
	// This has absolutely nothing to do with the dropdown, sorry:
	$('#content_wrap .links').hide();
	
	// Ok, but this stuff does:
	$(".navitem").hover(
      function () {
        $(this).addClass("hover");
      }, 
      function () {
        $(this).removeClass("hover");
      }
    );
 
	$('.splitcol').each(function(i){
		var colsize = Math.round($(this).find("li").size() / 2);
		$(this).find("li").each(function(i) {
			if (i>=colsize){
				$(this).addClass('splitcol_right');
			}
		}
		)
		$(this).find('.splitcol_right').insertAfter(this).wrapAll("<ul class='left dropdownrightcol'></ul>");
	}
	)
});
