function positionLogo() {

	if(($("#EndNavContent").offset().top + $("#studyserve-logo").height() + 20) < $(window).height()) {	
		$("#studyserve-logo").css("top",$(window).height() - ($("#studyserve-logo").height() + 20));
		$("#studyserve-logo").css("display","block");
	} else {
		// We might have resized !!!
		$("#studyserve-logo").hide();
	}
}

$(document).ready(function() {
    positionLogo();

    $(window).resize(function() {
        positionLogo();  
    });
});
