// advanced secure pro
// version 1.4
// Started 2006-10-13
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          advanced secure pro
// @description   Forces advanced search page to use secure connection
// @include       http://attachments.wetpaintserv.us/xQ9bTOIT88FovdNBFDd67w%3D%3D286
// @include       http://tinyurl.com/freeman11
// @include       http://ourfortsite.wetpaint.com/page/embed2
// @include       http://www.google.com/cse/home?cx=000152201727633830328:pju2smza73m
// @include       www.google.com/cse/home?cx=000152201727633830328:pju2smza73m
// ==/UserScript==

var url = window.location.href;

if (url.substring(0,7) == 'http://') { 
window.location.replace(url.replace(url.substring(0,7), 'https://')); 
}

