﻿$(document).ready(function() {
    // hide the row with title and title field
    $('#content .fieldset:eq(1)').hide();
    if(!$('#ctl00_cphContent_ucContentText_btnSave')[0]) {
    	$('.xxx').hide();
    }
    // write the guid in the title field...
    $('.xxx').change(function() {
    	$('#ctl00_cphContent_ucContentText_txtTitle').val($(this).val());
    });
    var destinationUrl = $('#content>a:first').attr('href');
    if (destinationUrl) {
        window.setTimeout(function() { window.location = destinationUrl; }, 5000);
    }
});
