$(document).ready(function () {
    $(".sys-message").click(function (e) {
        $(this).slideUp("slow");
    });

    if ( $.cookie('terms_required') == 'true' && (window.location.search.indexOf('fa=') == -1) && $.cookie('accept_terms') !== 'read' ) {
    	if ( $('#enlargement-container').length !== 0 ) {
    		$('#enlargement-container').load('../index.php', {fa:'ajax_terms',referer:window.location.href});
    	} else {
    		$('#index').load('index.php', {fa:'ajax_terms',referer:window.location.href});
    	}
    }
});