jQuery(document).ready(function($){
	
	// about / contact page content position
	height = $('#col1-image').height();
	topMargin = Math.round(height / 3);
	if(topMargin > 50){
		$('#col2-text').css('margin-top', topMargin);
	};
	
	
	$('.events:last').css('border', 'none');
	
	$('.paging li:first').before('<li><a id="scrollup" href="#top"><small>^</small> Top</a></li>');
	

    $("#scrollup").click(function(event){
        event.preventDefault();
        var full_url = this.href;
        var parts = full_url.split("#");
        var trgt = parts[1];
        var target_offset = $("#"+trgt).offset();
        var target_top = target_offset.top;
        $('html, body').animate({scrollTop:target_top}, 900);
    });

	hide = $("#content > div").length;
	if(hide < 2){
		$('.single .paging').remove();
	};
	
	$('#menu-footer li:first').addClass('first');
	
});
