/* check protocol and change location */


this.serch_chg = function(){

	temp = this.location.protocol
	if(temp=="https:"){
		this.location.href = "http://"+this.location.host+this.location.pathname
	}

}

this.serch_chg();


