﻿jQuery(function() {
// NOTE: script to fix defect http://issuetracker.colours.nl/issue/ViewIssue.aspx?id=22885
// The dynamic flash module on the homepage is moved to the right in page edit mode
    if (jQuery('#scWebEditRibbon').length && jQuery('#image1').length) {
        if (jQuery('#image1').parent().css('position') == 'absolute') {
            jQuery('#image1').parent().css('position', 'relative');
        }
    }
});
