﻿function global_init() {
    if ($(document).height() > 1050) {
        $('a.top').show();
        $('a.top').click(function () {
            $('html, body').animate({ scrollTop: 0 }, 750);
            return false;
        });
    }

    $('.logo').hover(
	function () {
	    $(this).children().children().attr('src', '/Content/images/college-advantage-logo-on.png');
	    alert((this).children().children().attr('src'));
	},
	function () {
	    $(this).children().children().attr('src', '/Content/images/college-advantage-logo.png');
	    alert((this).children().children().attr('src'));
	});

	DD_roundies.addRule('.help-box', '0 12px 0 12px', true);
	DD_roundies.addRule('.help-box input', '0 12px 0 12px', true);
}

