// JavaScript Document

$(document).ready(function() {

if (document.getElementById('tradeweb').checked ==0){
  $('#toggle_div').hide();	
}

});

function toggle_div(){
	$('#toggle_div').slideToggle(400);
};