$(document).ready(function(){
	var initOrderType = $('#form_type').val();
	if(initOrderType == 'Limit'){
		$('#limit_price').show('fast');
	}
	else if(initOrderType == 'Market'){
		//do nothing
	}
	else if(initOrderType == 'Stop'){
		 $('#stop_price').show('fast');
	}
	else if(initOrderType == 'Stop-Limit'){
		$('#limit_price').show('fast');
		$('#stop_price').show('fast');
	}
	else if(initOrderType == 'Trailing Stop'){
		$('#trail').show('fast');
	}
		
};
