jQuery().ready(function() { $('a.forgot').colorbox({ width: '400px', height: '145px', initialWidth: '350px', initialHeight: '75px', scrolling: false }); $('a.button.login').colorbox({ width: '400px', height: '150px', initialWidth: '350px', initialHeight: '100px', scrolling: false }); $('.cell.deco a').colorbox({ width: '434px', height: '300px', initialWidth: '384px', initialHeight: '250px', scrolling: false }); $('form.forgot-password').live('submit', function() { $('#cboxLoadedContent').hide(); $('#cboxLoadingOverlay').show(); $.post($(this).attr('action'), $(this).serializeArray(), function(data) { $('#cboxLoadedContent').html(data).show(); $('#cboxLoadingOverlay').hide(); if($('input[name="reload"]').val() == 'true') { window.location.reload(); } }); return false; }); });